98810ba750
#KT-27143 Fixed
12 lines
218 B
Kotlin
Vendored
12 lines
218 B
Kotlin
Vendored
// CONFIGURE_LIBRARY: JUnit@lib/junit-4.12.jar
|
|
// IS_APPLICABLE: false
|
|
|
|
import org.junit.Test
|
|
|
|
class A {
|
|
@Test fun <caret>test_two_plus_two_equals_four() {}
|
|
}
|
|
|
|
fun test() {
|
|
A().test_two_plus_two_equals_four()
|
|
} |