mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
28 lines
676 B
Kotlin
Vendored
28 lines
676 B
Kotlin
Vendored
// FILE: J.java
|
|
|
|
public class J {
|
|
public J() {
|
|
}
|
|
|
|
public void member(String s) {
|
|
}
|
|
|
|
public static void staticMethod(int x) {
|
|
}
|
|
}
|
|
|
|
// FILE: K.kt
|
|
|
|
import kotlin.reflect.*
|
|
import kotlin.test.assertEquals
|
|
|
|
fun box(): String {
|
|
assertEquals(listOf("equals", "hashCode", "member", "staticMethod", "toString"), J::class.members.map { it.name }.sorted())
|
|
assertEquals(listOf("equals", "hashCode", "member", "staticMethod", "toString"), J::class.functions.map { it.name }.sorted())
|
|
assertEquals(listOf("member", "staticMethod"), J::class.declaredFunctions.map { it.name }.sorted())
|
|
|
|
assertEquals(1, J::class.constructors.size)
|
|
|
|
return "OK"
|
|
}
|