aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoracolyer <acolyer>2004-08-04 12:00:34 +0000
committeracolyer <acolyer>2004-08-04 12:00:34 +0000
commitef909dddd6b8728aba25dec9aee04d5e180d8662 (patch)
treecd81c4394ec45ccd1e53b6d7a3c76d075da19cc1
parent9bf0a7543072b66835b2417ce932fc34da4e45ee (diff)
downloadaspectj-ef909dddd6b8728aba25dec9aee04d5e180d8662.tar.gz
aspectj-ef909dddd6b8728aba25dec9aee04d5e180d8662.zip
The JUnit test suite to end all test suites. This should come in pretty handy....
-rw-r--r--run-all-junit-tests/.classpath39
-rw-r--r--run-all-junit-tests/testsrc/RunTheseBeforeYouCommitTests.java29
2 files changed, 49 insertions, 19 deletions
diff --git a/run-all-junit-tests/.classpath b/run-all-junit-tests/.classpath
index 46a1b3557..02762de95 100644
--- a/run-all-junit-tests/.classpath
+++ b/run-all-junit-tests/.classpath
@@ -1,22 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
- <classpathentry kind="src" path="testsrc"/>
- <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
- <classpathentry kind="src" path="/ajbrowser"/>
- <classpathentry kind="src" path="/ajde"/>
- <classpathentry kind="src" path="/asm"/>
- <classpathentry kind="src" path="/bridge"/>
- <classpathentry kind="src" path="/build"/>
- <classpathentry kind="src" path="/org.aspectj.ajdt.core"/>
- <classpathentry kind="src" path="/org.eclipse.jdt.core"/>
- <classpathentry kind="src" path="/runtime"/>
- <classpathentry kind="src" path="/taskdefs"/>
- <classpathentry kind="src" path="/testing"/>
- <classpathentry kind="src" path="/testing-client"/>
- <classpathentry kind="src" path="/testing-drivers"/>
- <classpathentry kind="src" path="/testing-util"/>
- <classpathentry kind="src" path="/util"/>
- <classpathentry kind="src" path="/weaver"/>
- <classpathentry kind="lib" path="/lib/junit/junit.jar" sourcepath="/lib/junit/junit-src.jar"/>
- <classpathentry kind="output" path="bin"/>
+ <classpathentry kind="src" path="testsrc"/>
+ <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
+ <classpathentry kind="src" path="/ajbrowser"/>
+ <classpathentry kind="src" path="/ajde"/>
+ <classpathentry kind="src" path="/asm"/>
+ <classpathentry kind="src" path="/bridge"/>
+ <classpathentry kind="src" path="/build"/>
+ <classpathentry kind="src" path="/org.aspectj.ajdt.core"/>
+ <classpathentry kind="src" path="/org.eclipse.jdt.core"/>
+ <classpathentry kind="src" path="/runtime"/>
+ <classpathentry kind="src" path="/taskdefs"/>
+ <classpathentry kind="src" path="/testing"/>
+ <classpathentry kind="src" path="/testing-client"/>
+ <classpathentry kind="src" path="/testing-drivers"/>
+ <classpathentry kind="src" path="/testing-util"/>
+ <classpathentry kind="src" path="/util"/>
+ <classpathentry kind="src" path="/weaver"/>
+ <classpathentry sourcepath="/lib/junit/junit-src.jar" kind="lib" path="/lib/junit/junit.jar"/>
+ <classpathentry kind="src" path="/tests"/>
+ <classpathentry kind="output" path="bin"/>
</classpath>
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;
+ }
+}