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

Collapse All | Expand All

(-)src/org/eclipse/jdt/core/tests/compiler/parser/GenericsCompletionParserTest.java (-1 / +5 lines)
Lines 461-467 Link Here
461
	String completeBehind = "Y<Z>.";
461
	String completeBehind = "Y<Z>.";
462
	int cursorLocation = str.indexOf("Y<Z>.") + completeBehind.length() - 1;
462
	int cursorLocation = str.indexOf("Y<Z>.") + completeBehind.length() - 1;
463
	String expectedCompletionNodeToString = "<CompleteOnInterface:Y<Z>.>";
463
	String expectedCompletionNodeToString = "<CompleteOnInterface:Y<Z>.>";
464
	String expectedParentNodeToString = "<NONE>";
464
	String expectedParentNodeToString = 
465
		"public class X implements I1, <CompleteOnInterface:Y<Z>.> {\n" + 
466
		"  public X() {\n" + 
467
		"  }\n" + 
468
		"}";
465
	String completionIdentifier = "";
469
	String completionIdentifier = "";
466
	String expectedReplacedSource = "Y<Z>.";
470
	String expectedReplacedSource = "Y<Z>.";
467
	String expectedUnitDisplayString =
471
	String expectedUnitDisplayString =

Return to bug 310423