aboutsummaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorwisberg <wisberg>2003-10-31 19:27:44 +0000
committerwisberg <wisberg>2003-10-31 19:27:44 +0000
commit458b26fe1241d3457ff8161ac8d18daa700a6cb0 (patch)
treec7641715c3b76fcd98798afd93d2473ddcc38955 /runtime
parent0871a66c915e4db43e3d736899c60779a63fd4b4 (diff)
downloadaspectj-458b26fe1241d3457ff8161ac8d18daa700a6cb0.tar.gz
aspectj-458b26fe1241d3457ff8161ac8d18daa700a6cb0.zip
returning TestSuite rather than Test to permit all tests to run from Eclipse
Diffstat (limited to 'runtime')
-rw-r--r--runtime/testsrc/RuntimeModuleTests.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/testsrc/RuntimeModuleTests.java b/runtime/testsrc/RuntimeModuleTests.java
index ced7ba2ca..fe36f3055 100644
--- a/runtime/testsrc/RuntimeModuleTests.java
+++ b/runtime/testsrc/RuntimeModuleTests.java
@@ -18,7 +18,7 @@ import junit.framework.*;
public class RuntimeModuleTests extends TestCase {
- public static Test suite() {
+ public static TestSuite suite() {
TestSuite suite = new TestSuite(RuntimeModuleTests.class.getName());
suite.addTestSuite(RuntimeModuleTests.class); // minimum 1 test (testNothing)
return suite;