@Test
public void downArrowDoesNothingWhenAtBottom()
{
setupMultiLine("This is\nMulti lined.").withCaretAt(1, 3);
processor.processKey(new KeyPressedEvent(NO_MODIFIERS, KeyEvent.KEY_DOWN, 0), model);
assertEquals(TextLocation.at(1, 3), model.getCaretLocation());
assertEquals(TextLocation.origin, model.getSelectionLocation());
assertEquals(false, model.isSelectionActivated());
}