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


public class AllTests extends TestSuite {


	public static void main(String[] args) {
		
		TestRunner.run(AllTests.class);
	}
	
	public static Test suite() {	
		TestSuite suite = new TestSuite();
		suite.addTest(ResourceSyncInfoTest.suite());
    	return suite; 	
	}	
	
	public AllTests(String name) {
		super(name);
	}
	
	public AllTests() {
		super();
	}
}


Back to the top