aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src/test/java/org/aspectj/systemtest/ajc150/ltw/LTWServerTests.java
blob: ad1055938afa5eb7b3366d57dcd9d5765bdeef0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package org.aspectj.systemtest.ajc150.ltw;

import org.aspectj.testing.XMLBasedAjcTestCase;

import junit.framework.Test;

public class LTWServerTests extends XMLBasedAjcTestCase {

	public static Test suite() {
		return loadSuite(LTWServerTests.class);
	}

	protected java.net.URL getSpecFile() {
		return getClassResource("ltw.xml");
	}

  	public void testServerWithHelloWorld () {
  		runTest("TestServer with HelloWorld");
  	}

  	public void testServerWithParentAndChild () {
  		runTest("TestServer with Parent and Child");
  	}

}