Skip to main content
summaryrefslogtreecommitdiffstats
blob: 74179b0df77b2477c18ae2336aeb121532deadb4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package org.eclipse.xpand.internal.tests.evaluate;

import junit.framework.Test;
import junit.framework.TestSuite;

public class AllPackageTests {

	public static Test suite() {
		TestSuite suite = new TestSuite(
				"Test for org.eclipse.xpand.internal.tests.evaluate");
		//$JUnit-BEGIN$
		suite.addTestSuite(AopFeatureTest.class);
		suite.addTestSuite(ProtectedRegionsTest.class);
		suite.addTestSuite(StatementEvaluatorTest.class);
		//$JUnit-END$
		return suite;
	}

}

Back to the top