String expected = " color: black;\n ";
checkAction(shiftEnter, text, expected, 0, 8, 0, 8, 1, 2);
}
public void testStartNewLineWithSelection() {
final TestSignalEvent shiftEnter = new TestSignalEvent(KeyboardEvent.KeyCode.ENTER,
SignalEvent.KeySignalType.INPUT, ModifierKeys.SHIFT);
String text = " color: black;";
String expected = " color: black;\n ";
checkAction(shiftEnter, text, expected, 0, 0, 0, 8, 1, 2);