aboutsummaryrefslogtreecommitdiffstats
path: root/run-all-junit-tests
diff options
context:
space:
mode:
authorwisberg <wisberg>2005-06-08 23:59:39 +0000
committerwisberg <wisberg>2005-06-08 23:59:39 +0000
commitcb13375e5c747a0d516afc1f2b29c5161e90d7be (patch)
treef0af9d766837c1b66e6d2865abb9853acf82653b /run-all-junit-tests
parent8986e240414efca12af096bddf90470b0faf84e5 (diff)
downloadaspectj-cb13375e5c747a0d516afc1f2b29c5161e90d7be.tar.gz
aspectj-cb13375e5c747a0d516afc1f2b29c5161e90d7be.zip
Now delegating to the two roots: AllTests for unit tests, and tests/../TestsModulesTests for compiler tests.
Diffstat (limited to 'run-all-junit-tests')
-rw-r--r--run-all-junit-tests/testsrc/RunTheseBeforeYouCommitTests.java38
1 files changed, 18 insertions, 20 deletions
diff --git a/run-all-junit-tests/testsrc/RunTheseBeforeYouCommitTests.java b/run-all-junit-tests/testsrc/RunTheseBeforeYouCommitTests.java
index b01513954..c835ef057 100644
--- a/run-all-junit-tests/testsrc/RunTheseBeforeYouCommitTests.java
+++ b/run-all-junit-tests/testsrc/RunTheseBeforeYouCommitTests.java
@@ -1,29 +1,27 @@
+/* *******************************************************************
+ * Copyright (c) 2005 Contributors.
+ * All rights reserved.
+ * This program and the accompanying materials are made available
+ * under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution and is available at
+ * http://eclipse.org/legal/epl-v10.html
+ *
+ * Contributors (See CVS checkin's):
+ *
+ * ******************************************************************/
+
import junit.framework.Test;
import junit.framework.TestSuite;
-import org.aspectj.systemtest.AllTests15;
-
-/*
- * 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(AllTests15.suite());
- //$JUnit-END$
+ String name = RunTheseBeforeYouCommitTests.class.getName();
+ TestSuite suite = new TestSuite(name);
+ // unit tests
+ suite.addTest(AllTests.suite());
+ // compiler tests
+ suite.addTest(TestsModuleTests.suite());
return suite;
}
}