diff options
author | wisberg <wisberg> | 2005-06-08 23:56:24 +0000 |
---|---|---|
committer | wisberg <wisberg> | 2005-06-08 23:56:24 +0000 |
commit | 9db52cb41e1eaf83c6f281cd24b6cac634e5c3e1 (patch) | |
tree | b296f6a78041b73c7e65528c8536717b607fe0db | |
parent | cb7cd13f822303a93f1020c1ab3e92b9f0d86f5a (diff) | |
download | aspectj-9db52cb41e1eaf83c6f281cd24b6cac634e5c3e1.tar.gz aspectj-9db52cb41e1eaf83c6f281cd24b6cac634e5c3e1.zip |
Module alias does not include compiler tests since tests/ does
-rw-r--r-- | run-all-junit-tests/testsrc/AllModuleTests.java | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/run-all-junit-tests/testsrc/AllModuleTests.java b/run-all-junit-tests/testsrc/AllModuleTests.java index 1cce51175..b373f456a 100644 --- a/run-all-junit-tests/testsrc/AllModuleTests.java +++ b/run-all-junit-tests/testsrc/AllModuleTests.java @@ -13,9 +13,14 @@ 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(); } } |