blob: 9b838726808314e67f149aba194005b0ea0c2ea7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2018 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.core.tests.runtime;
import junit.framework.*;
public class AllTests extends TestCase {
public AllTests() {
super(null);
}
public AllTests(String name) {
super(name);
}
public static Test suite() {
TestSuite suite = new TestSuite(AllTests.class.getName());
suite.addTestSuite(CoreExceptionTest.class);
suite.addTestSuite(IAdapterManagerTest.class);
suite.addTestSuite(IAdapterManagerServiceTest.class);
suite.addTestSuite(AdapterManagerDynamicTest.class);
suite.addTestSuite(OperationCanceledExceptionTest.class);
suite.addTestSuite(PathTest.class);
suite.addTestSuite(PlatformTest.class);
suite.addTestSuite(PluginVersionIdentifierTest.class);
suite.addTestSuite(SubMonitorTest.class);
suite.addTestSuite(SubProgressTest.class);
suite.addTestSuite(SubMonitorSmallTicksTest.class);
suite.addTestSuite(ProgressMonitorWrapperTest.class);
suite.addTestSuite(QualifiedNameTest.class);
suite.addTestSuite(SafeRunnerTest.class);
suite.addTestSuite(StatusTest.class);
suite.addTestSuite(URIUtilTest.class);
suite.addTestSuite(URLTest.class);
return suite;
}
}