]> source.dussan.org Git - aspectj.git/commitdiff
Spring cleaning in the test suite. Docs for AjcTestCase and XMLBasedAjcTestCase
authoracolyer <acolyer>
Wed, 4 Aug 2004 12:09:50 +0000 (12:09 +0000)
committeracolyer <acolyer>
Wed, 4 Aug 2004 12:09:50 +0000 (12:09 +0000)
added in docs dir.

tests/incrementalju/full-rebuild/src/Aspect.java [new file with mode: 0644]
tests/incrementalju/full-rebuild/src/Main.java [new file with mode: 0644]

diff --git a/tests/incrementalju/full-rebuild/src/Aspect.java b/tests/incrementalju/full-rebuild/src/Aspect.java
new file mode 100644 (file)
index 0000000..b2fc288
--- /dev/null
@@ -0,0 +1,4 @@
+
+public aspect Aspect {
+    declare warning : execution(static void main(String[])):: "dw";
+}
\ No newline at end of file
diff --git a/tests/incrementalju/full-rebuild/src/Main.java b/tests/incrementalju/full-rebuild/src/Main.java
new file mode 100644 (file)
index 0000000..d3dbf0c
--- /dev/null
@@ -0,0 +1,6 @@
+
+public class Main {
+    public static void main(String[] args) {
+               System.getProperty("code for method-execution location");
+       }
+}
\ No newline at end of file