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

Collapse All | Expand All

(-)src/org/eclipse/jdt/core/tests/dom/ASTConverter15Test.java (-2 / +2 lines)
Lines 7633-7639 Link Here
7633
		typeBinding = typeBinding.getSuperclass();
7633
		typeBinding = typeBinding.getSuperclass();
7634
		IMethodBinding[] methodBindings = typeBinding.getDeclaredMethods();
7634
		IMethodBinding[] methodBindings = typeBinding.getDeclaredMethods();
7635
		assertNotNull("No method bindings", methodBindings);
7635
		assertNotNull("No method bindings", methodBindings);
7636
		assertEquals("wrong size", 0, methodBindings.length);
7636
		assertEquals("wrong size", 2, methodBindings.length);
7637
	}
7637
	}
7638
7638
7639
	/*
7639
	/*
Lines 7660-7666 Link Here
7660
		typeBinding = typeBinding.getSuperclass();
7660
		typeBinding = typeBinding.getSuperclass();
7661
		IVariableBinding[] variableBindings = typeBinding.getDeclaredFields();
7661
		IVariableBinding[] variableBindings = typeBinding.getDeclaredFields();
7662
		assertNotNull("No variable bindings", variableBindings);
7662
		assertNotNull("No variable bindings", variableBindings);
7663
		assertEquals("wrong size", 0, variableBindings.length);
7663
		assertEquals("wrong size", 1, variableBindings.length);
7664
	}
7664
	}
7665
7665
7666
	/*
7666
	/*

Return to bug 176118