Add tests for ClassInheritorsSearch and AnnotatedMembersSearch

Add test for junit
This commit is contained in:
Natalia.Ukhorskaya
2012-10-05 11:51:48 +04:00
parent 727414ba22
commit 7de6c30506
11 changed files with 376 additions and 0 deletions
@@ -0,0 +1,8 @@
MyAnnotation("f", "s") fun test1() {}
MyAnnotation("f", "s") class Test1() {}
annotation class MyAnnotation(val first: String, val second: String)
// ANNOTATION: MyAnnotation
// SEARCH: PsiMethod:test1, JetLightClass:Test1