blob: 151af029dc5a7909c8888429292fe321940b969c (
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.io.File;
import junit.framework.Test;
import org.aspectj.testing.XMLBasedAjcTestCase;
public class LTWServer153Tests extends XMLBasedAjcTestCase {
public static Test suite() {
return loadSuite(LTWServer153Tests.class);
}
protected File getSpecFile() {
return new File("../tests/src/org/aspectj/systemtest/ajc153/ajc153.xml");
}
public void testHandleDuplicateConfiguration_pr157474 () {
runTest("TestServer with duplicate configuration");
}
}
|