blob: 3469b2ce4f60ce9ea9ff578e62efedd9ee46acf0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
package org.aspectj.systemtest.ajc153;
import java.net.URL;
import org.aspectj.testing.XMLBasedAjcTestCase;
import junit.framework.Test;
public class LTWServer153Tests extends XMLBasedAjcTestCase {
public static Test suite() {
return loadSuite(LTWServer153Tests.class);
}
protected URL getSpecFile() {
return getClassResource("ajc153.xml");
}
public void testHandleDuplicateConfiguration_pr157474 () {
runTest("TestServer with duplicate configuration");
}
}
|