blob: 14bd4ff122321884028cc0d2dc37229fa33db5c7 (
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
50
51
52
53
54
55
56
57
|
/*******************************************************************************
* Copyright (c) 2016 Contributors
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt
*
* Contributors:
* Andy Clement - initial API and implementation
*******************************************************************************/
package org.aspectj.systemtest.ajc190;
import junit.framework.Test;
import org.aspectj.testing.JavaVersionSpecificXMLBasedAjcTestCase;
import org.aspectj.testing.XMLBasedAjcTestCase;
/**
* @author Andy Clement
*/
public class Ajc190Tests extends JavaVersionSpecificXMLBasedAjcTestCase {
public Ajc190Tests() {
super(9);
}
public void testParamAnnosNegative() {
runTest("param annos negative");
}
public void testAnnotMethodHasMember_pr156962_1() { // From similar in Ajc153Tests
runTest("Test Annot Method Has Member 1");
}
public void testAnnotMethodHasMember_pr156962_2() { // From similar in Ajc153Tests
runTest("Test Annot Method Has Member 1");
}
public void testFunnySignature() {
runTest("funny signature with method reference");
}
// Weave a module with code that isn't in a module
public void testWeaveModule() throws Exception {
runTest("weave module");
}
// ---
public static Test suite() {
return XMLBasedAjcTestCase.loadSuite(Ajc190Tests.class);
}
@Override
protected java.net.URL getSpecFile() {
return getClassResource("ajc190.xml");
}
}
|