blob: 1738eead59dc17c13a3a26fa22dd5ed7a7dd722e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 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.team.tests.core;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.eclipse.core.tests.harness.EclipseWorkspaceTest;
public class AllTeamTests extends EclipseWorkspaceTest {
/**
* Constructor for CVSClientTest.
*/
public AllTeamTests() {
super();
}
/**
* Constructor for CVSClientTest.
* @param name
*/
public AllTeamTests(String name) {
super(name);
}
public static Test suite() {
TestSuite suite = new TestSuite();
suite.addTest(RepositoryProviderTests.suite());
suite.addTest(StreamTests.suite());
return suite;
}
}