blob: f734a319f7f2f60724b73cbd940f2730938444e4 [file] [log] [blame]
package org.eclipse.team.tests.ccvs.core.compatible;
/*
* (c) Copyright IBM Corp. 2000, 2002.
* All Rights Reserved.
*/
import junit.framework.Test;
import junit.framework.TestSuite;
import org.eclipse.team.tests.ccvs.core.JUnitTestCase;
public class AllTests extends TestSuite {
public static Test suite() {
TestSuite suite = new TestSuite();
suite.addTest(BasicTest.suite());
suite.addTest(ConflictTest.suite());
suite.addTest(ModuleTest.suite());
return new CompatibleTestSetup(suite);
}
public AllTests(String name) {
super(name);
}
public AllTests() {
super();
}
}