diff options
author | aclement <aclement> | 2006-05-18 11:46:43 +0000 |
---|---|---|
committer | aclement <aclement> | 2006-05-18 11:46:43 +0000 |
commit | f1f3decfd2ff14d5d559e67f0209e567a6fbbc79 (patch) | |
tree | 05518a2ba6c2efde9532d45f98974326efe08fcb /tests | |
parent | 4cd98f5929a019b2b9dc5ca430afbe8b67bb50d9 (diff) | |
download | aspectj-f1f3decfd2ff14d5d559e67f0209e567a6fbbc79.tar.gz aspectj-f1f3decfd2ff14d5d559e67f0209e567a6fbbc79.zip |
tests moved to 152
Diffstat (limited to 'tests')
-rw-r--r-- | tests/bugs151/pr125480/AbstractMethods.aj | 13 | ||||
-rw-r--r-- | tests/bugs151/pr125480/AtAspectTestConcreteMethods.java | 6 | ||||
-rw-r--r-- | tests/bugs151/pr125480/ConcreteMethods.aj | 7 | ||||
-rw-r--r-- | tests/bugs151/pr125480/HelloWorld.java | 11 | ||||
-rw-r--r-- | tests/bugs151/pr125480/aop-tracing.xml | 10 |
5 files changed, 0 insertions, 47 deletions
diff --git a/tests/bugs151/pr125480/AbstractMethods.aj b/tests/bugs151/pr125480/AbstractMethods.aj deleted file mode 100644 index e37065c87..000000000 --- a/tests/bugs151/pr125480/AbstractMethods.aj +++ /dev/null @@ -1,13 +0,0 @@ - - -public abstract aspect AbstractMethods { - - protected abstract pointcut tracingScope (); - - before () : tracingScope () { - test(); - } - - protected abstract void test (); -// protected void test () {} -} diff --git a/tests/bugs151/pr125480/AtAspectTestConcreteMethods.java b/tests/bugs151/pr125480/AtAspectTestConcreteMethods.java deleted file mode 100644 index 90e4cc34e..000000000 --- a/tests/bugs151/pr125480/AtAspectTestConcreteMethods.java +++ /dev/null @@ -1,6 +0,0 @@ -import org.aspectj.lang.annotation.Aspect; - -@Aspect -public class AtAspectTestConcreteMethods extends ConcreteMethods { - -} diff --git a/tests/bugs151/pr125480/ConcreteMethods.aj b/tests/bugs151/pr125480/ConcreteMethods.aj deleted file mode 100644 index efc23b5d2..000000000 --- a/tests/bugs151/pr125480/ConcreteMethods.aj +++ /dev/null @@ -1,7 +0,0 @@ - - -public abstract aspect ConcreteMethods extends AbstractMethods { - - protected void test () {} - -} diff --git a/tests/bugs151/pr125480/HelloWorld.java b/tests/bugs151/pr125480/HelloWorld.java deleted file mode 100644 index f741a2c0e..000000000 --- a/tests/bugs151/pr125480/HelloWorld.java +++ /dev/null @@ -1,11 +0,0 @@ -public class HelloWorld { - - public static void main(String[] args) { - new HelloWorld().println(); - } - - public void println() { - System.out.print("Hello World!"); - } - -} diff --git a/tests/bugs151/pr125480/aop-tracing.xml b/tests/bugs151/pr125480/aop-tracing.xml deleted file mode 100644 index e31e52caf..000000000 --- a/tests/bugs151/pr125480/aop-tracing.xml +++ /dev/null @@ -1,10 +0,0 @@ -<aspectj> - <aspects> - <concrete-aspect name="TraceHelloWorld" extends="ConcreteMethods"> - <pointcut name="tracingScope" expression="within(*)"/> - </concrete-aspect> - </aspects> - - <weaver options="-verbose"/> -</aspectj> - |