Files
kotlin-fork/idea/testData/search/junit/testJunit4Alias.kt
T
2015-06-12 09:23:31 +03:00

15 lines
339 B
Kotlin
Vendored

import org.junit.Test as test
import org.junit.Test
class MyTestClass {
test fun test1() {}
@Deprecated @test fun test2() {}
Test fun test3() {}
}
// ANNOTATION: org.junit.Test
// SEARCH: KotlinLightMethodForDeclaration:test1
// SEARCH: KotlinLightMethodForDeclaration:test2
// SEARCH: KotlinLightMethodForDeclaration:test3