TestParameter
data class TestParameter @JvmOverloads constructor(val name: String, val type: KClass<*>, val isNullable: Boolean = false, val annotations: List<Annotation> = emptyList(), val clock: Clock = Clock.systemUTC())
Represents a parameter for a test method.