Skip to main content
summaryrefslogtreecommitdiffstats
blob: c596d472ac3d24be2a7db7b82146b96544f2d7c7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package org.eclipse.team.tests.ccvs.core.provider;
/*
 * (c) Copyright IBM Corp. 2000, 2002.
 * All Rights Reserved.
 */
import junit.framework.Test;
import junit.framework.TestSuite;
import org.eclipse.team.tests.ccvs.core.CVSTestSetup;
import org.eclipse.team.tests.ccvs.core.EclipseTest;

/**
 * @version 	1.0
 * @author 	${user}
 */
public class AllTests extends EclipseTest {

	/**
	 * Constructor for AllTests.
	 */
	public AllTests() {
		super();
	}

	/**
	 * Constructor for AllTests.
	 * @param name
	 */
	public AllTests(String name) {
		super(name);
	}

	public static Test suite() {
		TestSuite suite = new TestSuite();
		suite.addTestSuite(ImportTest.class);
		suite.addTestSuite(CVSProviderTest.class);
		suite.addTestSuite(RemoteResourceTest.class);
		suite.addTestSuite(SyncElementTest.class);
		return new CVSTestSetup(suite);
	}
}

Back to the top