assertFalse(display.isSuggestionListShowing());
assertFalse(popup.isShowing());
display.showSuggestions(box, suggestions, false, false, NULL_CALLBACK);
assertTrue(display.isSuggestionListShowing());
assertTrue(popup.isShowing());
display.hideSuggestions();
assertFalse(display.isSuggestionListShowing());
assertFalse(popup.isShowing());
}
public void testGetCurrentSelectionWhenHidden() {