View | Details | Raw Unified | Return to bug 109535 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/jdt/core/tests/dom/ASTConverterTestAST3_2.java (-2 / +2 lines)
Lines 6742-6748 Link Here
6742
	/*
6742
	/*
6743
	 * https://bugs.eclipse.org/bugs/show_bug.cgi?id=109535
6743
	 * https://bugs.eclipse.org/bugs/show_bug.cgi?id=109535
6744
	 */
6744
	 */
6745
	public void _test0618() throws JavaModelException {
6745
	public void test0618() throws JavaModelException {
6746
		ICompilationUnit workingCopy = null;
6746
		ICompilationUnit workingCopy = null;
6747
		try {
6747
		try {
6748
			String contents =
6748
			String contents =
Lines 6776-6782 Link Here
6776
			InfixExpression infixExpression2 = (InfixExpression) leftOperand;
6776
			InfixExpression infixExpression2 = (InfixExpression) leftOperand;
6777
			extendedOperands = infixExpression.extendedOperands();
6777
			extendedOperands = infixExpression.extendedOperands();
6778
			assertEquals("Wrong size", 0, extendedOperands.size());
6778
			assertEquals("Wrong size", 0, extendedOperands.size());
6779
			assertEquals("Wrong operator", InfixExpression.Operator.PLUS, infixExpression.getOperator());
6779
			assertEquals("Wrong operator", InfixExpression.Operator.PLUS, infixExpression2.getOperator());
6780
			assertEquals("Not a string literal", ASTNode.STRING_LITERAL, infixExpression2.getLeftOperand().getNodeType());
6780
			assertEquals("Not a string literal", ASTNode.STRING_LITERAL, infixExpression2.getLeftOperand().getNodeType());
6781
			assertEquals("Not a string literal", ASTNode.STRING_LITERAL, infixExpression2.getRightOperand().getNodeType());
6781
			assertEquals("Not a string literal", ASTNode.STRING_LITERAL, infixExpression2.getRightOperand().getNodeType());
6782
		} finally {
6782
		} finally {

Return to bug 109535