blob: 59f5b33e5e233acc3b0201b7536e2bd567fc44d2 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.update.tests.regularInstall;
import org.eclipse.update.tests.UpdateManagerTestCase;
import junit.framework.*;
public class AllRegularInstallTests extends UpdateManagerTestCase {
public AllRegularInstallTests(String name) {
super(name);
}
public static Test suite() {
TestSuite suite = new TestSuite();
suite.setName("Regular Install Tests");
// the following will take all teh test methods in teh class that start with 'test'
suite.addTest(new TestSuite(TestInstall.class));
suite.addTest(new TestSuite(TestInstallURLSIteXML.class));
suite.addTest(new TestSuite(TestSpaceInInstall.class));
suite.addTest(new TestSuite(TestGetFeature.class));
suite.addTest(new TestSuite(TestExecutableInstall.class));
suite.addTest(new TestSuite(TestExecutablePackagedInstall.class));
suite.addTest(new TestSuite(TestDataEntryInstall.class));
suite.addTest(new TestSuite(TestLocalSite.class));
// or you can specify the method
//suite.addTest(new TestGetFeature("methodThatDoesNotStartWithtest"));
return suite;
}
}