blob: 8df16f22204732af31d173d84673d6f815e2f397 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
/* *******************************************************************
* 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:
* Wes Isberg initial implementation
* ******************************************************************/
import junit.framework.TestCase;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.aspectj.systemtest.AllTests;
import org.aspectj.systemtest.AllTests14;
import org.aspectj.systemtest.AllTests15;
import org.aspectj.util.LangUtil;
public class TestsModuleTests extends TestCase {
public static Test suite() {
String name = TestsModuleTests.class.getName();
TestSuite suite = new TestSuite(name);
// compiler tests, wrapped for JUnit
if (LangUtil.is15VMOrGreater()) {
suite.addTest(AllTests15.suite());
} else if (LangUtil.is14VMOrGreater()) {
System.err.println("Skipping tests for 1.5");
//suite.addTest(TestUtil.skipTest("for 1.5"));
suite.addTest(AllTests14.suite());
} else {
System.err.println("Skipping tests for 1.4 and 1.5");
//suite.addTest(TestUtil.skipTest("for 1.4 and 1.5"));
suite.addTest(AllTests.suite());
}
return suite;
}
}
|