assertEquals("01234\n", content.getString(0, content.length()));
}
public void testUndoInsertStart() throws BadLocationException {
UndoableEdit ue = content.insertString(0, "321");
ue.undo();
assertEquals("01234\n", content.getString(0, content.length()));
}
public void testUndoInsertMiddle() throws BadLocationException {
UndoableEdit ue = content.insertString(3, "999");