From: wisberg Date: Fri, 31 Oct 2003 22:36:16 +0000 (+0000) Subject: initial version of common JUnit driver usable from Eclipse X-Git-Tag: mostlyLastEclipse2xTree_20040112~91 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=73ea8b743c9c0e711f181126c0324b09ff8b9e9d;p=aspectj.git initial version of common JUnit driver usable from Eclipse --- diff --git a/run-all-junit-tests/.classpath b/run-all-junit-tests/.classpath new file mode 100644 index 000000000..46a1b3557 --- /dev/null +++ b/run-all-junit-tests/.classpath @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/run-all-junit-tests/.project b/run-all-junit-tests/.project new file mode 100644 index 000000000..d7718dc8b --- /dev/null +++ b/run-all-junit-tests/.project @@ -0,0 +1,32 @@ + + + run-all-junit-tests + + + ajbrowser + ajde + asm + bridge + build + org.aspectj.ajdt.core + org.eclipse.jdt.core + runtime + taskdefs + testing + testing-client + testing-drivers + testing-util + util + weaver + + + + org.eclipse.jdt.core.javabuilder + + + + + + org.eclipse.jdt.core.javanature + + diff --git a/run-all-junit-tests/testsrc/AllTests.java b/run-all-junit-tests/testsrc/AllTests.java new file mode 100644 index 000000000..7c5e0a947 --- /dev/null +++ b/run-all-junit-tests/testsrc/AllTests.java @@ -0,0 +1,38 @@ +/* ******************************************************************* + * Copyright (c) 2003 Contributors. + * All rights reserved. + * This program and the accompanying materials are made available + * under the terms of the Common Public License v1.0 + * which accompanies this distribution and is available at + * http://www.eclipse.org/legal/cpl-v10.html + * + * Contributors: + * Wes Isberg initial implementation + * ******************************************************************/ + +// default package +import junit.framework.*; + +public class AllTests extends TestCase { + + public static TestSuite suite() { + TestSuite suite = new TestSuite(AllTests.class.getName()); + suite.addTest(AjbrowserModuleTests.suite()); + suite.addTest(AjdeModuleTests.suite()); + suite.addTest(AsmModuleTests.suite()); + suite.addTest(BridgeModuleTests.suite()); + suite.addTest(EajcModuleTests.suite()); + suite.addTest(RuntimeModuleTests.suite()); + suite.addTest(TaskdefsModuleTests.suite()); + suite.addTest(TestingModuleTests.suite()); + suite.addTest(TestingDriversModuleTests.suite()); + suite.addTest(UtilModuleTests.suite()); + suite.addTest(BcweaverModuleTests.suite()); + return suite; + } + + public AllTests(String name) { + super(name); + } + +}