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 548B

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