summaryrefslogtreecommitdiffstats
path: root/weaver/testsrc
diff options
context:
space:
mode:
Diffstat (limited to 'weaver/testsrc')
-rw-r--r--weaver/testsrc/org/aspectj/weaver/test/Test.java5
1 files changed, 4 insertions, 1 deletions
diff --git a/weaver/testsrc/org/aspectj/weaver/test/Test.java b/weaver/testsrc/org/aspectj/weaver/test/Test.java
index 9fb078ca7..d4fabddd6 100644
--- a/weaver/testsrc/org/aspectj/weaver/test/Test.java
+++ b/weaver/testsrc/org/aspectj/weaver/test/Test.java
@@ -10,7 +10,9 @@
*/
package org.aspectj.weaver.test;
-public class Test {
+import junit.framework.TestCase;
+
+public class Test extends TestCase {
public static void main(String[] args) {
foo()
.
@@ -20,4 +22,5 @@ public class Test {
new Exception().printStackTrace();
return new Test();
}
+ public void testNothingForAntJUnit() {}
}