TestParameter
data class TestParameter(val name: String, val type: KClass<*>, val isNullable: Boolean = false, val annotations: List<Annotation> = emptyList())
Represents a parameter for a test method.
Constructors
Link copied to clipboard
constructor(name: String, type: KClass<*>, isNullable: Boolean = false, annotations: List<Annotation> = emptyList())