Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 06ef83c8e14627220f3044422346f0e19824f40f (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
package org.eclipse.cdt.ui.tests;
/*
 * (c) Copyright IBM Corp. 2000, 2001.
 * All Rights Reserved.
 */


import junit.framework.Test;
import junit.framework.TestSuite;

import org.eclipse.cdt.ui.tests.text.PartitionTokenScannerTest;
import org.eclipse.cdt.ui.tests.text.contentassist.*;
import org.eclipse.cdt.ui.tests.text.contentassist.failedtests.*;
import org.eclipse.cdt.ui.tests.textmanipulation.TextBufferTest;



/**
 * Test all areas of the UI.
 */
public class AutomatedSuite extends TestSuite {

	/**
	 * Returns the suite.  This is required to
	 * use the JUnit Launcher.
	 */
	public static Test suite() {
		return new AutomatedSuite();
	}

	/**
	 * Construct the test suite.
	 */
	public AutomatedSuite() {
		
		// Success Tests
		addTest(PartitionTokenScannerTest.suite());
		addTest(TextBufferTest.suite());
		addTest(CompletionProposalsTest1.suite());
		addTest(CompletionProposalsTest2.suite());
		addTest(CompletionProposalsTest3.suite());
		addTest(CompletionProposalsTest4.suite());
		addTest(CompletionProposalsTest5.suite());
		addTest(CompletionProposalsTest6.suite());
		addTest(CompletionProposalsTest7.suite());
		
		// Failed Tests
		addTest(CompletionProposalsFailedTest1.suite());
		addTest(CompletionProposalsFailedTest2.suite());
		
	}
	
}

Back to the top