a5e4e0284e
This patch mutes the following test categories:
* Tests with java dependencies (System class,
java stdlib, jvm-oriented annotations etc).
* Coroutines tests.
* Reflection tests.
* Tests with an inheritance from the standard
collections.
38 lines
1.0 KiB
Kotlin
Vendored
38 lines
1.0 KiB
Kotlin
Vendored
// IGNORE_BACKEND: JS, NATIVE
|
|
// WITH_REFLECT
|
|
|
|
import kotlin.reflect.KProperty
|
|
import kotlin.reflect.jvm.isAccessible
|
|
import kotlin.test.*
|
|
|
|
class Delegate(val value: String) {
|
|
operator fun getValue(instance: Any?, property: KProperty<*>) = value
|
|
}
|
|
|
|
open class Base {
|
|
open val x: String by Delegate("Base")
|
|
}
|
|
|
|
class Derived : Base() {
|
|
override val x: String by Delegate("Derived")
|
|
}
|
|
|
|
fun check(expected: String, delegate: Any?) {
|
|
if (delegate == null) throw AssertionError("getDelegate returned null")
|
|
assertEquals(expected, (delegate as Delegate).value)
|
|
}
|
|
|
|
fun box(): String {
|
|
val base = Base()
|
|
val derived = Derived()
|
|
|
|
check("Base", (Base::x).apply { isAccessible = true }.getDelegate(base))
|
|
check("Base", (base::x).apply { isAccessible = true }.getDelegate())
|
|
check("Derived", (Derived::x).apply { isAccessible = true }.getDelegate(derived))
|
|
check("Derived", (derived::x).apply { isAccessible = true }.getDelegate())
|
|
|
|
check("Base", (Base::x).apply { isAccessible = true }.getDelegate(derived))
|
|
|
|
return "OK"
|
|
}
|