blob: dcdd61a43b59b3618b8934a95c2dec1197c7ccaf [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 AllTargetTests extends EclipseWorkspaceTest {
/**
* Constructor for AllTargetTests.
*/
public AllTargetTests() {
super();
}
/**
* Constructor for AllTargetTests.
* @param name
*/
public AllTargetTests(String name) {
super(name);
}
public static Test suite() {
TestSuite suite = new TestSuite();
suite.addTest(TargetProviderTests.suite());
suite.addTest(RemoteResourceTests.suite());
suite.addTest(SyncElementTest.suite());
return new TargetTestSetup(suite);
}
}