for (KeyValue keyValue : results) {
assertEquals("The rows with ROWS_TWO as row key should be appearing.",
Bytes.toString(keyValue.getRow()), Bytes.toString(ROWS_THREE[1]));
}
// again try to reseek to a value before ROWS_THREE[1]
scanner.reseek(ROWS_ONE[1]);
results = new ArrayList<KeyValue>();
// This time no seek would have been done to ROWS_ONE[1]
scanner.next(results);
for (KeyValue keyValue : results) {
assertFalse("Cannot rewind back to a value less than previous reseek.",