Basic annotation collector tests

This commit is contained in:
Yan Zhulanow
2015-05-14 16:20:09 +03:00
parent f12531dd6d
commit d9289df29e
19 changed files with 325 additions and 0 deletions
@@ -0,0 +1,7 @@
a javax.inject.Inject 0
p org.test 0
f 0 0/SomeClass annotatedVal
a org.jetbrains.annotations.Nullable 1
f 1 0/SomeClass annotatedVal
m 1 0/SomeClass getAnnotatedVal
f 0 0/SomeClass annotatedVar
@@ -0,0 +1,13 @@
package org.test
import javax.inject.*
public class SomeClass {
Inject
public val annotatedVal: String? = null
Inject
public var annotatedVar: Int = 5
}