}
public void testMoveRowIndex() {
try {
TextTableCellReference reference = new TextTableCellReference("<A4:B6>");
reference.moveRowIndex(3);
Assert.assertEquals("<A7:B9>", reference.toString());
}
catch(Exception exception) {
Assert.fail(exception.getMessage());
}