0e2bdb8e66
Also restore tests for ConvertCamelCaseTestFunctionToSpaced and apply fix for KT-18375
10 lines
183 B
Kotlin
Vendored
10 lines
183 B
Kotlin
Vendored
// CONFIGURE_LIBRARY: JUnit@lib/junit-4.12.jar
|
|
import org.junit.Test
|
|
|
|
class A {
|
|
@Test fun <caret>testTwoPlusTwoEqualsFour() {}
|
|
}
|
|
|
|
fun test() {
|
|
A().testTwoPlusTwoEqualsFour()
|
|
} |