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

import junit.framework.*;

/**
 * Performs all automated importexport tests.
 */
public class AllTests extends TestCase {

	public static Test suite() {
		TestSuite suite = new TestSuite(AllTests.class.getName());
		suite.addTestSuite(ImportExportTests.class);
		//		suite.addTestSuite(ImportExportRemoteTests.class);
		return suite;
	}

}

Back to the top