Skip to main content
summaryrefslogtreecommitdiffstats
blob: e7d8285e2f99e351953b0f8b3323a0dc7b6d558c (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
package org.eclipse.team.tests.ccvs.core;
/*
 * (c) Copyright IBM Corp. 2000, 2002.
 * All Rights Reserved.
 */
import junit.framework.Test;
import junit.framework.TestSuite;

public class AllTests extends EclipseTest {

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

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

	/*
	 * ORDER IS IMPORTANT: Run compatibility and resource tests before any other!!!
	 */
	public static Test suite() {
		TestSuite suite = new TestSuite();
		suite.addTest(org.eclipse.team.tests.ccvs.core.compatible.AllTestsCompatibility.suite());
		suite.addTest(org.eclipse.team.tests.ccvs.core.cvsresources.AllTestsCVSResource.suite());
		suite.addTest(org.eclipse.team.tests.ccvs.core.provider.AllTestsProvider.suite());
		return new CVSTestSetup(suite);
	}
}

Back to the top