Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 4b412c98afca149fed626287a28aa2ea277c0bfc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package org.eclipse.net4j.tests;


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

public class AllTests {

	public static Test suite() {
		TestSuite suite = new TestSuite("Test for org.eclipse.net4j.tests");
//       TODO: add real JUnit tests here
		suite.addTestSuite(SampleTest.class);
		return suite;
	}

}

Back to the top