blob: 2b0eb01a7b3dbc6d10a91459edbcbec17c802458 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2006 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.ui.synchronize;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.eclipse.core.tests.resources.ResourceTest;
public class AllTeamSynchronizeTests extends ResourceTest {
public AllTeamSynchronizeTests() {
super();
}
public AllTeamSynchronizeTests(String name) {
super(name);
}
public static Test suite() {
TestSuite suite = new TestSuite();
suite.addTest(ResourceContentTests.suite());
return suite;
}
}