blob: 7f0ddf5b2c2f88c7b0a9f5888fa0e4be3d43e165 [file] [log] [blame]
package org.eclipse.team.tests.ccvs.core;
/*
* (c) Copyright IBM Corp. 2000, 2002.
* All Rights Reserved.
*/
import junit.framework.Test;
import junit.framework.TestSuite;
public class AllTests extends EclipseTest {
/**
* Constructor for CVSClientTest.
*/
public AllTests() {
super();
}
/**
* Constructor for CVSClientTest.
* @param name
*/
public AllTests(String name) {
super(name);
}
/*
* ORDER IS IMPORTANT: Run compatibility and resource tests before any other!!!
*/
public static Test suite() {
TestSuite suite = new TestSuite();
suite.addTest(org.eclipse.team.tests.ccvs.core.compatible.AllTestsCompatibility.suite());
suite.addTest(org.eclipse.team.tests.ccvs.core.cvsresources.AllTestsCVSResources.suite());
suite.addTest(org.eclipse.team.tests.ccvs.core.provider.AllTestsProvider.suite());
return new CVSTestSetup(suite);
}
}