blob: af06fd72935ae994b2b562b861152c6c8bf323cf (
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
42
43
44
45
46
47
48
49
|
/*
* Created on 19-01-2005
*/
package org.aspectj.systemtest;
import org.aspectj.systemtest.ajc150.AllTestsAspectJ150;
import org.aspectj.systemtest.ajc150.ataspectj.AtAjAnnotationGenTests;
import org.aspectj.systemtest.ajc151.AllTestsAspectJ151;
import org.aspectj.systemtest.ajc152.AllTestsAspectJ152;
import org.aspectj.systemtest.ajc153.AllTestsAspectJ153;
import org.aspectj.systemtest.ajc154.AllTestsAspectJ154;
import org.aspectj.systemtest.incremental.tools.IncrementalCompilationTests;
import org.aspectj.systemtest.incremental.tools.IncrementalOutputLocationManagerTests;
import org.aspectj.systemtest.incremental.tools.IncrementalPerformanceTests;
import org.aspectj.systemtest.incremental.tools.MoreOutputLocationManagerTests;
import org.aspectj.systemtest.incremental.tools.MultiProjectIncrementalTests;
import org.aspectj.systemtest.model.Model5Tests;
import org.aspectj.systemtest.xlint.XLint5Tests;
import junit.framework.Test;
import junit.framework.TestSuite;
public class AllTests15 {
public static Test suite() {
TestSuite suite = new TestSuite("AspectJ System Test Suite - JDK 1.5");
// $JUnit-BEGIN$
suite.addTest(AllTests14.suite());
suite.addTest(AllTestsAspectJ150.suite());
suite.addTest(AllTestsAspectJ151.suite());
suite.addTest(AllTestsAspectJ152.suite());
suite.addTest(AllTestsAspectJ153.suite());
suite.addTest(AllTestsAspectJ154.suite());
suite.addTest(AtAjAnnotationGenTests.suite());
suite.addTest(Model5Tests.suite());
/*
* FIXME maw Many of these tests do not depend on Java 5 but they cannot be executed in Eclipse with 1.3 because of XML
* issues and are excluded on the build machine so moving them here loses nothing for the moment.
*/
suite.addTestSuite(MultiProjectIncrementalTests.class);
suite.addTestSuite(IncrementalCompilationTests.class);
suite.addTestSuite(IncrementalPerformanceTests.class);
suite.addTestSuite(MoreOutputLocationManagerTests.class);
suite.addTestSuite(IncrementalOutputLocationManagerTests.class);
suite.addTest(XLint5Tests.suite());
// $JUnit-END$
return suite;
}
}
|