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