Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: ba5313791b7d3e43ab874c5a8b2942ae9c7cd62f (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
/*******************************************************************************
 * Copyright (c) 2007, 2009 2008 Symbian Software Limited 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:
 * Bala Torati (Symbian) - Initial API and implementation
 *******************************************************************************/
package org.eclipse.cdt.managedbuilder.templateengine.tests;

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

/**
 * This is a TestSuite, the TestCases created to test Template engine are
 * added to test-suite. The test suite will execute all the test cases added
 * to the Suite.
 *
 * @since 4.0
 */
public class AllTemplateEngineTests extends TestSuite {

	public static void main(String[] args) {
		junit.textui.TestRunner.run(AllTemplateEngineTests.suite());
	}

	/**
	 * Since the TemplateEngine consists of UI(Wizard).
	 * A TestWizard is created to which the dynamically generated
	 * UIPages are added.  The Wizard is launched from here.
	 * The TestCases created to test the TemplateEngine is initialized here.
	 * @return
	 *
	 * @since 4.0
	 */
	public static Test suite() {
		TestSuite suite = new TestSuite("Template engine tests"); //$NON-NLS-1$
		//$JUnit-BEGIN$

		suite.addTestSuite(TestProcesses.class);

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

Back to the top