aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src/org/aspectj/systemtest/AllTests14.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/src/org/aspectj/systemtest/AllTests14.java')
-rw-r--r--tests/src/org/aspectj/systemtest/AllTests14.java30
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/src/org/aspectj/systemtest/AllTests14.java b/tests/src/org/aspectj/systemtest/AllTests14.java
new file mode 100644
index 000000000..da97c7337
--- /dev/null
+++ b/tests/src/org/aspectj/systemtest/AllTests14.java
@@ -0,0 +1,30 @@
+/*
+ * Created on 03-Aug-2004
+ *
+ * TODO To change the template for this generated file go to
+ * Window - Preferences - Java - Code Style - Code Templates
+ */
+package org.aspectj.systemtest;
+
+import org.aspectj.systemtest.java14.Java14Tests;
+
+import junit.framework.Test;
+import junit.framework.TestSuite;
+
+/**
+ * @author colyer
+ *
+ * TODO To change the template for this generated type comment go to
+ * Window - Preferences - Java - Code Style - Code Templates
+ */
+public class AllTests14 {
+
+ public static Test suite() {
+ TestSuite suite = new TestSuite("AspectJ System Test Suite - JDK 1.4");
+ //$JUnit-BEGIN$
+ suite.addTest(AllTests.suite());
+ suite.addTest(Java14Tests.suite());
+ //$JUnit-END$
+ return suite;
+ }
+}