blob: 13c1cbe50055320d55fff900da1b6e6c9e924846 [file] [log] [blame]
package org.eclipse.update.tests.regularRemove;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
import org.eclipse.update.tests.UpdateManagerTestCase;
import junit.framework.*;
public class AllRegularRemoveTests extends UpdateManagerTestCase {
public AllRegularRemoveTests(String name) {
super(name);
}
public static Test suite() {
TestSuite suite = new TestSuite();
suite.setName("Regular Remove Tests");
// the following will take all teh test methods in teh class that start with 'test'
suite.addTest(new TestSuite(TestRemove.class));
// or you can specify the method
//suite.addTest(new TestGetFeature("methodThatDoesNotStartWithtest"));
return suite;
}
}