Migrate boxWithJava tests to multi-file framework
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
// FILE: Test.java
|
||||
|
||||
class Test {
|
||||
public static String foo() {
|
||||
return A.foo;
|
||||
}
|
||||
|
||||
public static String constBar() {
|
||||
return A.constBar;
|
||||
}
|
||||
|
||||
public static String getBar() {
|
||||
return A.getBar();
|
||||
}
|
||||
|
||||
public static String baz() {
|
||||
return A.baz();
|
||||
}
|
||||
}
|
||||
|
||||
// FILE: enumCompanionObject.kt
|
||||
|
||||
import kotlin.jvm.JvmStatic
|
||||
|
||||
enum class A {
|
||||
;
|
||||
companion object {
|
||||
@JvmField val foo: String = "OK"
|
||||
|
||||
const val constBar: String = "OK"
|
||||
|
||||
@JvmStatic val bar: String = "OK"
|
||||
|
||||
@JvmStatic fun baz() = foo
|
||||
}
|
||||
}
|
||||
|
||||
fun box(): String {
|
||||
if (Test.foo() != "OK") return "Fail foo"
|
||||
if (Test.constBar() != "OK") return "Fail bar"
|
||||
if (Test.getBar() != "OK") return "Fail getBar"
|
||||
if (Test.baz() != "OK") return "Fail baz"
|
||||
return "OK"
|
||||
}
|
||||
Reference in New Issue
Block a user