Files
kotlin-fork/idea/testData/search/junit/testJunit4Alias.kt
T
Pavel V. Talanov ce4a950697 AbstractSearcherTest: check member kind in test data not the psi implementation class
It is not what should be tested in this test
2015-11-02 18:39:01 +03:00

15 lines
266 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: method:test1
// SEARCH: method:test2
// SEARCH: method:test3