a.replaceText(" There", 5, 5);
harness.check(a.getText(), "Hello There World");
// Replace in the middle of text.
harness.check(a.getPeer(), null);
a.replaceText("", 6, 12);
harness.check(a.getText(), "Hello World");
// Replace at the end of text.
harness.check(a.getPeer(), null);
a.replaceText("!", a.getText().length(), a.getText().length());