From ef909dddd6b8728aba25dec9aee04d5e180d8662 Mon Sep 17 00:00:00 2001 From: acolyer Date: Wed, 4 Aug 2004 12:00:34 +0000 Subject: [PATCH] The JUnit test suite to end all test suites. This should come in pretty handy.... --- run-all-junit-tests/.classpath | 39 ++++++++++--------- .../testsrc/RunTheseBeforeYouCommitTests.java | 29 ++++++++++++++ 2 files changed, 49 insertions(+), 19 deletions(-) create mode 100644 run-all-junit-tests/testsrc/RunTheseBeforeYouCommitTests.java 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 @@ - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + 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; + } +} -- 2.39.5