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

public class AllTeamAndCVSTests extends EclipseTest {

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

	/**
	 * Constructor for CVSClientTest.
	 * @param name
	 */
	public AllTeamAndCVSTests(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(new TestSetup(AllTeamTests.suite()));
		suite.addTest(new CVSTestSetup(AllTests.suite()));
		return suite;
	}
}

Back to the top