blob: 5379ac09559ee3c7b189e51d899b39b80f537ee1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2013 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.team.tests.ccvs.ui;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.eclipse.team.tests.ccvs.core.EclipseTest;
public class AllUITests extends EclipseTest {
public AllUITests() {
super();
}
public AllUITests(String name) {
super(name);
}
public static Test suite() {
TestSuite suite = new TestSuite();
suite.addTest(CheckoutOperationTests.suite());
suite.addTest(CompareOperationTests.suite());
suite.addTest(MiscOperationsTests.suite());
suite.addTest(ProjectSetImporterTests.suite());
//TODO Temporary switched off, see Bug 400540
// suite.addTest(EditorTests.suite());
suite.addTest(PatchWizardRadioButtonGroupTests.suite());
suite.addTest(CVSProjectSetImportTest.suite());
suite.addTest(CreatePatchTest.suite());
suite.addTest(CVSHisoryTableProviderTest.suite());
suite.addTest(PatchTreeTest.suite());
suite.addTest(RepositoriesViewTests.suite());
return suite;
}
}