aboutsummaryrefslogtreecommitdiffstats
path: root/aspectj5rt/testsrc/Aspectj5rtModuleTests.java
diff options
context:
space:
mode:
Diffstat (limited to 'aspectj5rt/testsrc/Aspectj5rtModuleTests.java')
-rw-r--r--aspectj5rt/testsrc/Aspectj5rtModuleTests.java9
1 files changed, 8 insertions, 1 deletions
diff --git a/aspectj5rt/testsrc/Aspectj5rtModuleTests.java b/aspectj5rt/testsrc/Aspectj5rtModuleTests.java
index 065df5479..ff1e30a2f 100644
--- a/aspectj5rt/testsrc/Aspectj5rtModuleTests.java
+++ b/aspectj5rt/testsrc/Aspectj5rtModuleTests.java
@@ -12,12 +12,19 @@
// default package
-import junit.framework.*;
+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() {
TestSuite suite = new TestSuite("Aspectj5rt module tests");
+ suite.addTestSuite(AjTypeTests.class);
+ suite.addTestSuite(AjTypeTestsWithAspects.class);
return suite;
}