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