Moved all but one test cases from AnnotationJDRTest to loadJava.

This commit is contained in:
Evgeny Gerashchenko
2013-03-11 16:28:48 +04:00
parent b8abd0eb94
commit 0f5de451ec
11 changed files with 74 additions and 142 deletions
@@ -1,6 +1,4 @@
package annotations;
import java.lang.String;
package test;
@interface MyAnnotationWithParam {
MyAnnotation value();
@@ -1,4 +1,4 @@
package annotations;
package test;
import java.lang.annotation.ElementType;
import java.lang.annotation.Target;
@@ -1,4 +1,4 @@
package annotations;
package test;
import java.lang.String;
import java.lang.annotation.ElementType;
@@ -1,4 +1,4 @@
package annotations;
package test;
import java.lang.String;
import java.lang.annotation.ElementType;
@@ -1,4 +1,4 @@
package annotations;
package test;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
@@ -1,4 +1,4 @@
package annotations;
package test;
@MyAnnotation(MyEnum.ONE)
class MyTest {}
@@ -1,4 +1,4 @@
package annotations;
package test;
@MyAnnotation(first = "f", second = "s")
class MyTest {}
@@ -1,11 +1,11 @@
package annotations;
@B(@A("test"))
@interface A {
String value();
}
@B(@A("test"))
@interface B {
A value();
}
package test;
@B(@A("test"))
@interface A {
String value();
}
@B(@A("test"))
@interface B {
A value();
}
@@ -1,4 +1,4 @@
package annotations;
package test;
@interface A {
B value();