]> source.dussan.org Git - aspectj.git/commitdiff
Now delegating to the two roots: AllTests for unit tests, and tests/../TestsModulesTe...
authorwisberg <wisberg>
Wed, 8 Jun 2005 23:59:39 +0000 (23:59 +0000)
committerwisberg <wisberg>
Wed, 8 Jun 2005 23:59:39 +0000 (23:59 +0000)
run-all-junit-tests/testsrc/RunTheseBeforeYouCommitTests.java

index b01513954c57e0da0240eded884c914a3fc545cc..c835ef0573e300887885025d847afdf9e45fd2ae 100644 (file)
@@ -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;
        }
 }