Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 7a51e27559643999d5354de5b9ff8b7b59275de0 (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
/*******************************************************************************
 * Copyright (c) 2004, 2006 IBM Corporation and others.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 * IBM - Initial API and implementation
 *******************************************************************************/
package org.eclipse.cdt.managedbuilder.ui.tests.suite;

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

import org.eclipse.cdt.managedbuilder.ui.tests.TestCProjectPlatformPage;
import org.eclipse.cdt.managedbuilder.ui.tests.TestCustomPageManager;
import org.eclipse.cdt.managedbuilder.ui.tests.properties.ToolListContentProviderTests;

/**
 *
 */
public class AutomatedIntegrationSuite {
	public static void main(String[] args) {
		junit.textui.TestRunner.run(AutomatedIntegrationSuite.suite());
	}

	public static Test suite() {
		TestSuite suite = new TestSuite("Test for org.eclipse.cdt.managedbuilder.ui.tests");
		//$JUnit-BEGIN$
		// TODO uncoment this
		suite.addTest(TestCustomPageManager.suite());
		suite.addTestSuite(TestCProjectPlatformPage.class);
		suite.addTest(ToolListContentProviderTests.suite());

		//$JUnit-END$
		return suite;
	}
}

Back to the top