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,8 +1,12 @@
a javax.inject.Named 0
a kotlin.data 0
c 0 SomeClass
a javax.inject.Inject 1
a java.lang.Deprecated 1
f 1 SomeClass annotatedProperty
a org.jetbrains.annotations.Nullable 2
f 2 SomeClass annotatedProperty
m 2 SomeClass getAnnotatedProperty
m 1 SomeClass annotatedFunction
a kotlin.inline 3
m 3 SomeClass annotatedFunction
a org.jetbrains.annotations.NotNull 4
m 4 SomeClass copy
@@ -1,13 +1,8 @@
import javax.inject.*
data public class SomeClass {
Named("KotlinClass")
public class SomeClass {
[Deprecated] public var annotatedProperty: String? = null
Inject
public var annotatedProperty: String? = null
Inject
public fun annotatedFunction() {
Deprecated public inline fun annotatedFunction() {
}