Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 677547eeb4f9ebf195ad6372846bf9202ff5f9cd (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
/**********************************************************************
 * Copyright (c) 2002-2004 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 org.eclipse.cdt.core.parser.IProblem;

/**
 * @author jcamelon
 *
 */
public class QuickParseProblemTests extends BaseASTTest {

	/**
	 * @param a
	 */
	public QuickParseProblemTests(String a) {
		super(a);
	}
	
	public void testBadClassName() throws Exception
	{
		String code = "class 12345 { };";//$NON-NLS-1$
		parse( code, true, false ); 
		assertFalse( quickParseCallback.problems.isEmpty() );
		assertEquals( quickParseCallback.problems.size(), 1 );
		IProblem p = (IProblem) quickParseCallback.problems.get( 0 );
		assertTrue( p.checkCategory( IProblem.SYNTAX_RELATED ));
		assertEquals( p.getID(), IProblem.SYNTAX_ERROR );
		assertEquals( p.getSourceStart(), code.indexOf( "12345")); //$NON-NLS-1$
		assertEquals( p.getSourceEnd(), code.indexOf( "12345") + 5 ); //$NON-NLS-1$
	}
	

}

Back to the top