Fix annotation collector tests (now using mock JDK)

This commit is contained in:
Yan Zhulanow
2015-05-20 16:02:51 +03:00
parent 921017367a
commit b9a9f783e9
19 changed files with 53 additions and 78 deletions
@@ -1,4 +1,4 @@
a javax.inject.Inject 0
a java.lang.Deprecated 0
p org.test 0
f 0 0/SomeClass annotatedVal
a org.jetbrains.annotations.Nullable 1
@@ -1,13 +1,11 @@
package org.test
import javax.inject.*
public class SomeClass {
Inject
Deprecated
public val annotatedVal: String? = null
Inject
Deprecated
public var annotatedVar: Int = 5
}