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,5 +1,3 @@
a javax.inject.Inject 0
a java.lang.Deprecated 0
p org.test 0
m 0 0/SomeClass annotatedFunction
a javax.inject.Named 1
m 1 0/SomeClass$annotatedFunction$1 invoke
m 0 0/SomeClass$annotatedFunction$1 invoke
@@ -1,14 +1,10 @@
package org.test
import javax.inject.*
public class SomeClass {
Inject
public fun annotatedFunction() {
[Named("LocalFunction")]
fun localFunction() {
[Deprecated] fun localFunction() {
}