Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 77a9a2cd38026cf7b33d2f8d14d1183d5d04a2f1 (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
/*******************************************************************************
 * Copyright (c) 2008, 2012 Institute for Software, HSR Hochschule fuer Technik  
 * Rapperswil, University of applied sciences and others
 * All rights reserved. This program and the accompanying materials 
 * are made available under the terms of the Eclipse Public License v1.0 
 * which accompanies this distribution, and is available at 
 * http://www.eclipse.org/legal/epl-v10.html  
 *  
 * Contributors: 
 *     Institute for Software - initial API and implementation
 *     Sergey Prigogin (Google)
 *******************************************************************************/
package org.eclipse.cdt.ui.tests.refactoring.utils;

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

/**
 * @author Thomas Corbat
 */
public class UtilTestSuite extends TestSuite {

	public static Test suite() throws Exception {
		UtilTestSuite suite = new UtilTestSuite(); 
		suite.addTest(IdentifierHelperTest.suite());
		suite.addTestSuite(TranslationUnitHelperTest.class);
		suite.addTestSuite(DefinitionFinderTest.class);
		suite.addTestSuite(PseudoNameGeneratorTest.class);
		suite.addTestSuite(NameComposerTest.class);
		return suite;
	}
}

Back to the top