Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 66537abbc0508339407175c1d1b39dd87c09a624 (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
/**********************************************************************
 * Copyright (c) 2002,2003 Rational Software Corporation and others.
 * All rights reserved.   This program and the accompanying materials
 * are made available under the terms of the Common Public License v0.5
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/cpl-v05.html
 * 
 * Contributors: 
 * IBM Rational Software - Initial API and implementation
***********************************************************************/
package org.eclipse.cdt.core.parser.tests;

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

import org.eclipse.cdt.core.model.tests.CModelElementsTests;

/**
 * @author jcamelon
 *
 * To change the template for this generated type comment go to
 * Window>Preferences>Java>Code Generation>Code and Comments
 */
public class ParserTestSuite extends TestCase {
	public static Test suite() { 
		TestSuite suite= new TestSuite(ParserTestSuite.class.getName()); 
		suite.addTestSuite(BranchTrackerTest.class);
		suite.addTestSuite(ScannerTestCase.class);
		suite.addTestSuite(ExprEvalTest.class);
		suite.addTestSuite(QuickParseASTTests.class);
		suite.addTestSuite(ParserSymbolTableTest.class);
		suite.addTestSuite(ParserSymbolTableTemplateTests.class );
		suite.addTestSuite(CModelElementsTests.class);
		suite.addTestSuite(CompletionParseTest.class);
//		suite.addTestSuite(MacroTests.class);
		suite.addTestSuite( PreprocessorTest.class );
		suite.addTestSuite( PreprocessorConditionalTest.class );
		suite.addTestSuite( QuickParseASTQualifiedNameTest.class);
		suite.addTestSuite( CompleteParseASTTest.class );
		suite.addTestSuite( SelectionParseTest.class );
		suite.addTestSuite( CompleteParseASTExpressionTest.class );
		suite.addTestSuite( CompleteParseASTSymbolIteratorTest.class );
		suite.addTestSuite( CompleteParseASTTemplateTest.class );
		return suite;
	}	
}

Back to the top