summaryrefslogtreecommitdiffstats
path: root/aspectj5rt/testsrc/Aspectj5rtModuleTests.java
diff options
context:
space:
mode:
authorwisberg <wisberg>2005-05-11 09:18:33 +0000
committerwisberg <wisberg>2005-05-11 09:18:33 +0000
commita2545d0e25640e03d2e97a6229ffe9f031617f9f (patch)
treebd673df3ca2a7fad3639af32adce81c9d09e123c /aspectj5rt/testsrc/Aspectj5rtModuleTests.java
parentc479b60b4987b55a9ba84bd472dc0e1119942ae4 (diff)
downloadaspectj-a2545d0e25640e03d2e97a6229ffe9f031617f9f.tar.gz
aspectj-a2545d0e25640e03d2e97a6229ffe9f031617f9f.zip
testsrc -> java5-testsrc, placeholders for pre-1.5 build
Diffstat (limited to 'aspectj5rt/testsrc/Aspectj5rtModuleTests.java')
-rw-r--r--aspectj5rt/testsrc/Aspectj5rtModuleTests.java12
1 files changed, 4 insertions, 8 deletions
diff --git a/aspectj5rt/testsrc/Aspectj5rtModuleTests.java b/aspectj5rt/testsrc/Aspectj5rtModuleTests.java
index ff1e30a2f..f0f6a3064 100644
--- a/aspectj5rt/testsrc/Aspectj5rtModuleTests.java
+++ b/aspectj5rt/testsrc/Aspectj5rtModuleTests.java
@@ -11,22 +11,18 @@
* ******************************************************************/
// default package
+import org.aspectj.testing.util.TestUtil;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
-import org.aspectj.internal.lang.reflect.AjTypeTests;
-import org.aspectj.internal.lang.reflect.AjTypeTestsWithAspects;
-
public class Aspectj5rtModuleTests extends TestCase {
- public static Test suite() {
+ public static Test suite() {
TestSuite suite = new TestSuite("Aspectj5rt module tests");
- suite.addTestSuite(AjTypeTests.class);
- suite.addTestSuite(AjTypeTestsWithAspects.class);
+ TestUtil.loadTestsReflectively(suite, "Aspectj5rt15ModuleTests", true);
return suite;
}
-
-}
+}