blob: 4ae4d7beb2bc2ca04f503d4c1d98b02b5ffe8691 (
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
|
package org.aspectj.weaver;
/* *******************************************************************
* 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:
* Adrian Colyer Initial implementation
* ******************************************************************/
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
import org.aspectj.weaver.bcel.BcelGenericSignatureToTypeXTestCase;
import org.aspectj.weaver.bcel.BcelWorldReferenceTypeTest;
import org.aspectj.weaver.patterns.WildTypePatternResolutionTestCase;
import org.aspectj.weaver.tools.Java15PointcutExpressionTest;
public class BcweaverModuleTests15 extends TestCase {
public static Test suite() {
TestSuite suite = new TestSuite(BcweaverModuleTests15.class.getName());
suite.addTestSuite(BcelGenericSignatureToTypeXTestCase.class);
suite.addTestSuite(BoundedReferenceTypeTestCase.class);
suite.addTest(Java15PointcutExpressionTest.suite());
suite.addTestSuite(MemberTestCase15.class);
suite.addTestSuite(BcelWorldReferenceTypeTest.class);
suite.addTest(TestJava5ReflectionBasedReferenceTypeDelegate.suite());
suite.addTestSuite(TypeVariableTestCase.class);
suite.addTestSuite(TypeVariableReferenceTypeTestCase.class);
suite.addTestSuite(WildTypePatternResolutionTestCase.class);
return suite;
}
public BcweaverModuleTests15(String name) {
super(name);
}
}
|