diff options
author | acolyer <acolyer> | 2004-08-04 12:09:50 +0000 |
---|---|---|
committer | acolyer <acolyer> | 2004-08-04 12:09:50 +0000 |
commit | 786a1e3a560bae84aef26783e8431a3f7f8fc4c0 (patch) | |
tree | be2af9470c1dc39fe63108675054fb3b8d8a965b /tests/incrementalju | |
parent | ba6b00472c8964dd0a6dd4274698241d790b695e (diff) | |
download | aspectj-786a1e3a560bae84aef26783e8431a3f7f8fc4c0.tar.gz aspectj-786a1e3a560bae84aef26783e8431a3f7f8fc4c0.zip |
Spring cleaning in the test suite. Docs for AjcTestCase and XMLBasedAjcTestCase
added in docs dir.
Diffstat (limited to 'tests/incrementalju')
-rw-r--r-- | tests/incrementalju/full-rebuild/src/Aspect.java | 4 | ||||
-rw-r--r-- | tests/incrementalju/full-rebuild/src/Main.java | 6 |
2 files changed, 10 insertions, 0 deletions
diff --git a/tests/incrementalju/full-rebuild/src/Aspect.java b/tests/incrementalju/full-rebuild/src/Aspect.java new file mode 100644 index 000000000..b2fc2887f --- /dev/null +++ b/tests/incrementalju/full-rebuild/src/Aspect.java @@ -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 index 000000000..d3dbf0c5e --- /dev/null +++ b/tests/incrementalju/full-rebuild/src/Main.java @@ -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 |