diff options
author | Andy Clement <aclement@pivotal.io> | 2019-01-31 12:20:25 -0800 |
---|---|---|
committer | Andy Clement <aclement@pivotal.io> | 2019-01-31 12:20:25 -0800 |
commit | 241ce080c1c4a625ebcab1108663b74271a8eae1 (patch) | |
tree | 14309b1103d62d307d313e7f44ebecbca58caa7b /run-all-junit-tests/src/test/java/RunTheseBeforeYouCommitTests.java | |
parent | b5a9f23c80222f8d68985173c50016ab66c69115 (diff) | |
download | aspectj-241ce080c1c4a625ebcab1108663b74271a8eae1.tar.gz aspectj-241ce080c1c4a625ebcab1108663b74271a8eae1.zip |
mavenizing run-all-junit-tests - wip
Diffstat (limited to 'run-all-junit-tests/src/test/java/RunTheseBeforeYouCommitTests.java')
-rw-r--r-- | run-all-junit-tests/src/test/java/RunTheseBeforeYouCommitTests.java | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/run-all-junit-tests/src/test/java/RunTheseBeforeYouCommitTests.java b/run-all-junit-tests/src/test/java/RunTheseBeforeYouCommitTests.java new file mode 100644 index 000000000..767bcb3ea --- /dev/null +++ b/run-all-junit-tests/src/test/java/RunTheseBeforeYouCommitTests.java @@ -0,0 +1,29 @@ +/* ******************************************************************* + * 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 org.aspectj.tests.TestsModuleTests; + +import junit.framework.Test; +import junit.framework.TestSuite; + +public class RunTheseBeforeYouCommitTests { + + public static Test suite() { + String name = RunTheseBeforeYouCommitTests.class.getName(); + TestSuite suite = new TestSuite(name); + // unit tests + suite.addTest(AllTests.suite()); + // compiler tests + suite.addTest(TestsModuleTests.suite()); + return suite; + } +} |