blob: da97c7337ed110071970ce6f7ff61264143489c4 (
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
|
/*
* Created on 03-Aug-2004
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
package org.aspectj.systemtest;
import org.aspectj.systemtest.java14.Java14Tests;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
* @author colyer
*
* TODO To change the template for this generated type comment go to
* Window - Preferences - Java - Code Style - Code Templates
*/
public class AllTests14 {
public static Test suite() {
TestSuite suite = new TestSuite("AspectJ System Test Suite - JDK 1.4");
//$JUnit-BEGIN$
suite.addTest(AllTests.suite());
suite.addTest(Java14Tests.suite());
//$JUnit-END$
return suite;
}
}
|