autocompleter.pressKey(new SignalEventEssence(' '));
assertFalse("popup disappeared", helper.popup.isShowing());
}
public void testRawExplicitInContext() {
SignalEventEssence quoteKey = new SignalEventEssence('"');
checkExplicit("line-comment", "// var a =", 0, quoteKey, null);
checkExplicit("in-block-comment", "/* var a = */", 3, quoteKey, null);
checkExplicit("block-comment-eol", "/* var a =\nsecond line*/", 0, quoteKey, null);
checkExplicit("in-string", "var a =''", 1, quoteKey, null);