blob: 1b3eb3d5cb57fbf78aa95ddbdcf2606880dcdb45 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2009 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.ui.tests.performance;
import junit.framework.JUnit4TestAdapter;
import junit.framework.Test;
/**
* Test all areas of the UI API.
*/
public class UIPerformanceTestSuite extends FilteredTestSuite {
/**
* Returns the suite. This is required to use the JUnit Launcher.
*/
public static Test suite() {
return new UIPerformanceTestSetup(new UIPerformanceTestSuite());
}
/**
* Construct the test suite.
*/
public UIPerformanceTestSuite() {
super();
addTestSuite(GenerateIdentifiersTest.class);
addTest(new WorkbenchPerformanceSuite());
addTest(new JUnit4TestAdapter(OpenClosePerspectiveTest.class));
addTest(new JUnit4TestAdapter(PerspectiveSwitchTest.class));
addTest(new JUnit4TestAdapter(OpenCloseWindowTest.class));
addTest(new ViewPerformanceSuite());
addTest(new JUnit4TestAdapter(OpenCloseEditorTest.class));
addTest(new JUnit4TestAdapter(OpenMultipleEditorTest.class));
addTest(new JUnit4TestAdapter(EditorSwitchTest.class));
addTestSuite(CommandsPerformanceTest.class);
addTest(new JUnit4TestAdapter(LabelProviderTest.class));
addTestSuite(ProgressReportingTest.class);
addTestSuite(OpenNavigatorFolderTest.class);
}
}