You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

LTWServer153Tests.java 491B

1234567891011121314151617181920212223
  1. package org.aspectj.systemtest.ajc153;
  2. import java.net.URL;
  3. import org.aspectj.testing.XMLBasedAjcTestCase;
  4. import junit.framework.Test;
  5. public class LTWServer153Tests extends XMLBasedAjcTestCase {
  6. public static Test suite() {
  7. return loadSuite(LTWServer153Tests.class);
  8. }
  9. protected URL getSpecFile() {
  10. return getClassResource("ajc153.xml");
  11. }
  12. public void testHandleDuplicateConfiguration_pr157474 () {
  13. runTest("TestServer with duplicate configuration");
  14. }
  15. }