content.scroll( 15, 15 );
}
public void testSetCursorOutsideViewAndTypeKeyMovesViewToShowCursor()
{
content.update( new Coordinate( 7, 7 ) );
reset();
final int keyCode = 12;
mockContent.type( keyCode );
mockView.update( new Coordinate( 5, 5 ) );
mockView.update( 12, 10 );
mockScrollView.scrolled( new Coordinate( 2, 2 ) );
replay();
content.type( keyCode );
}