assertEquals(cr1.commitTimestamp, ctr1.commitTimestamp);
// Aborted transaction report
AbortedTransactionReport atr = clientHandler.receiveMessage(AbortedTransactionReport.class);
assertEquals(cr2.startTimestamp, atr.startTimestamp);
// Full Abort report
CleanedTransactionReport cltr = clientHandler.receiveMessage(CleanedTransactionReport.class);
assertEquals(cr2.startTimestamp, cltr.startTimestamp);
TimestampResponse tr3 = clientHandler.receiveMessage(TimestampResponse.class);
clientHandler.sendMessage(new CommitRequest(tr3.timestamp, new RowKey[] { r1, r2 }));