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

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

public class AllTests {

	public static Test suite() {
		TestSuite suite = new TestSuite(
				"Test for org.eclipse.xtend.typesystem.baseimpl");
		//$JUnit-BEGIN$
		suite.addTestSuite(ObjectFeaturesTest.class);
		suite.addTestSuite(TypesComparatorTest.class);
		suite.addTestSuite(CollectionFeaturesTest.class);
		//$JUnit-END$
		return suite;
	}

}

Back to the top