]> source.dussan.org Git - aspectj.git/commitdiff
Module alias does not include compiler tests since tests/ does
authorwisberg <wisberg>
Wed, 8 Jun 2005 23:56:24 +0000 (23:56 +0000)
committerwisberg <wisberg>
Wed, 8 Jun 2005 23:56:24 +0000 (23:56 +0000)
run-all-junit-tests/testsrc/AllModuleTests.java

index 1cce511754b1779ab1f11d8b30e3d79c5cdf6714..b373f456a91b002292cfc36f4d9d5a7acf6cdbe8 100644 (file)
 import junit.framework.Test;
 import junit.framework.TestCase;
 
+/**
+ * Alias to maintain convention for invoking JUnit from Ant
+ * by discovery of module root tests that name is *ModuleTests.
+ */
 public class AllModuleTests extends TestCase {
     public static Test suite() {
-        return RunTheseBeforeYouCommitTests.suite();
+        // does not include compiler tests, i.e., tests/../TestsModuleTests
+        return AllTests.suite();
     }
 
 }