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.

LTWServerTests.java 601B

123456789101112131415161718192021222324252627
  1. package org.aspectj.systemtest.ajc150.ltw;
  2. import java.io.File;
  3. import junit.framework.Test;
  4. import org.aspectj.testing.XMLBasedAjcTestCase;
  5. public class LTWServerTests extends XMLBasedAjcTestCase {
  6. public static Test suite() {
  7. return loadSuite(LTWServerTests.class);
  8. }
  9. protected File getSpecFile() {
  10. return new File("../tests/src/org/aspectj/systemtest/ajc150/ltw/ltw.xml");
  11. }
  12. public void testServerWithHelloWorld () {
  13. runTest("TestServer with HelloWorld");
  14. }
  15. public void testServerWithParentAndChild () {
  16. runTest("TestServer with Parent and Child");
  17. }
  18. }