Move tests on KClass.java* to box/classLiteral/java
Also replace WITH_REFLECT to WITH_RUNTIME to test that these cases correctly work without reflection in the classpath
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
// WITH_RUNTIME
|
||||
|
||||
inline fun <reified T : Any> check(expected: String) {
|
||||
val clazz = T::class.java!!
|
||||
assert (clazz.canonicalName == "java.lang.$expected") {
|
||||
"clazz name: ${clazz.canonicalName}"
|
||||
}
|
||||
}
|
||||
|
||||
fun box(): String {
|
||||
check<Boolean>("Boolean")
|
||||
check<Char>("Character")
|
||||
check<Byte>("Byte")
|
||||
check<Short>("Short")
|
||||
check<Int>("Integer")
|
||||
check<Float>("Float")
|
||||
check<Long>("Long")
|
||||
check<Double>("Double")
|
||||
|
||||
check<String>("String")
|
||||
check<Void>("Void")
|
||||
|
||||
return "OK"
|
||||
}
|
||||
Reference in New Issue
Block a user