Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 7dbe26bd0ead309acb886e381862ac1a35267dd2 (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
/**********************************************************************
 * Copyright (c) 2004, 2005 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Common Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/cpl-v10.html
 * 
 * Contributors: 
 * IBM - Initial API and implementation
 **********************************************************************/
package org.eclipse.cdt.managedbuilder.ui.tests.suite;

import org.eclipse.cdt.core.CCorePlugin;
import org.eclipse.cdt.managedbuilder.ui.tests.TestCustomPageManager;


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

/**
 *
 */
public class AllManagedBuildUITests {
	public static void main(String[] args) {
	    CCorePlugin.getDefault().getCoreModel().getIndexManager().reset();
		junit.textui.TestRunner.run(AllManagedBuildUITests.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());
		
		//$JUnit-END$
		return suite;
	}
}

Back to the top