blob: 8d3246f904afccccf8be538d1b77e2585e48943d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2008 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.ant.tests.ui.testplugin;
import org.eclipse.ant.tests.ui.editor.performance.OpenAntEditorTest;
import org.eclipse.ant.tests.ui.performance.SeparateVMTests;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
* Performance Test suite for the Ant UI. All of the tests in this suite rely on the setup that occurs in the ProjectCreationDecorator suite. It must
* always run before any of the other test suites.
*/
public class AntUIPerformanceTests extends TestSuite {
public static Test suite() {
TestSuite suite = new AntUIPerformanceTests();
suite.setName("Ant UI Performance Unit Tests"); //$NON-NLS-1$
suite.addTestSuite(OpenAntEditorTest.class);
suite.addTestSuite(SeparateVMTests.class);
// suite.addTest(new TestSuite(NonInitialTypingTest.class));
// suite.addTest(new TestSuite(OpenLaunchConfigurationDialogTests.class));
return suite;
}
}