@Test
  public void testGetSelectionStart() {
    Assert.assertTrue(
        "GetSelectionStart() - Return start doesn't the selection start",
        engine.getSelectionStart() == 0);

    selection.setStart(1);
    Assert.assertTrue(
        "GetSelectionStart() - Return start doesn't the selection start",
        engine.getSelectionStart() == 1);
  }