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

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.analyze");
		//$JUnit-BEGIN$
		suite.addTestSuite(StatementAnalyzationTest.class);
		//$JUnit-END$
		return suite;
	}

}

Back to the top