blob: 0ca873d0b86d55b9a6dee17f8b1cc1c14ab24891 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ant.tests.ui.testplugin;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.eclipse.ant.tests.ui.editor.performance.OpenAntEditorTest;
/**
* Performance Test suite for the Ant UI
*/
public class AntUIPerformanceTests extends TestSuite {
public static Test suite() {
TestSuite suite= new AntUIPerformanceTests();
suite.setName("Ant UI Performance Unit Tests");
suite.addTest(new TestSuite(ProjectCreationDecorator.class));
suite.addTest(new TestSuite(OpenAntEditorTest.class));
//suite.addTest(new TestSuite(NonInitialTypingTest.class));
return suite;
}
}