Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 8b639b672ee914e731a7df73a7777d0f4de8ffbe (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) 2004, 2005 IBM Canada Ltd. 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.ast2;

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

/**
 * @author jcamelon
 *
 */
public class DOMGCCParserExtensionTestSuite extends TestCase {

	public static Test suite() {
		TestSuite suite= new TestSuite(DOMGCCParserExtensionTestSuite.class.getName());
//		suite.addTestSuite( GCCScannerExtensionsTest.class );
//		suite.addTestSuite( GCCQuickParseExtensionsTest.class );
//		suite.addTestSuite( GCCCompleteParseExtensionsTest.class );
		suite.addTestSuite( DOMGCCSelectionParseExtensionsTest.class);
		return suite;
	}
	
}

Back to the top