summaryrefslogtreecommitdiffstats
path: root/weaver/testsrc
diff options
context:
space:
mode:
authorwisberg <wisberg>2005-05-21 23:42:53 +0000
committerwisberg <wisberg>2005-05-21 23:42:53 +0000
commit0604f09865cfecf18ff814cefecc033c01955828 (patch)
tree095a1015fe7b5645dd1246676ba25679aff8c0cd /weaver/testsrc
parent773ad112441790f1b85aa5560994fc9cbdd27b1e (diff)
downloadaspectj-0604f09865cfecf18ff814cefecc033c01955828.tar.gz
aspectj-0604f09865cfecf18ff814cefecc033c01955828.zip
making Test a TestCase
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() {}
}