summaryrefslogtreecommitdiffstats
path: root/tests/src
diff options
context:
space:
mode:
authoracolyer <acolyer>2004-12-10 11:26:37 +0000
committeracolyer <acolyer>2004-12-10 11:26:37 +0000
commit9380b983d27b392777788c754cfdc27691d52032 (patch)
tree91e7d28c30f01320a53a76ecfa4331a77f7a03eb /tests/src
parentaf27e608a6638052271a7014c02c60b0c837d43b (diff)
downloadaspectj-9380b983d27b392777788c754cfdc27691d52032.tar.gz
aspectj-9380b983d27b392777788c754cfdc27691d52032.zip
testing for @args
Diffstat (limited to 'tests/src')
-rw-r--r--tests/src/org/aspectj/systemtest/ajc150/AnnotationRuntimeTests.java8
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/src/org/aspectj/systemtest/ajc150/AnnotationRuntimeTests.java b/tests/src/org/aspectj/systemtest/ajc150/AnnotationRuntimeTests.java
index 8b5403bc1..966bf884a 100644
--- a/tests/src/org/aspectj/systemtest/ajc150/AnnotationRuntimeTests.java
+++ b/tests/src/org/aspectj/systemtest/ajc150/AnnotationRuntimeTests.java
@@ -44,10 +44,16 @@ public class AnnotationRuntimeTests extends TestUtils {
public void test003_InheritableOrNot() {
CompilationResult cR = binaryWeave("TestingAnnotations.jar","ThisOrTargetTests.aj",0,0);
- System.out.println(cR);
}
// TODO extra tests
// run the result of test003 and validate matches (needs 1.5 runtime)
// test inheritable annotation not present on type [should generate runtime test]
+
+ public void test004_ArgsSuite() {
+ baseDir = new File("../tests/java5/annotations/args");
+ CompilationResult cR = binaryWeave("TestingArgsAnnotations.jar","AtArgsAspect.java",0,0);
+ // TODO need to RUN the result of these tests...
+ System.out.println(cR);
+ }
}