Skip to main content
summaryrefslogtreecommitdiffstats
blob: 890e59ead3d46347b48e35b888e5abbb84a55669 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package org.eclipse.xtend.expression.ast;

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

public class AllTests {

	public static Test suite() {
		TestSuite suite = new TestSuite(
				"Test for org.eclipse.xtend.expression.ast");
		//$JUnit-BEGIN$
		suite.addTestSuite(EvaluationTest.class);
		suite.addTestSuite(AnalyzationTest.class);
		//$JUnit-END$
		return suite;
	}

}

Back to the top