assertEquals(42, n);
bufferIncrement(table, key, family, qual, 1);
bufferIncrement(table, key, family, qual, 2);
bufferIncrement(table, key, family, qual, -3);
client.flush().joinUninterruptibly();
final GetRequest get = new GetRequest(table, key)
.family(family).qualifier(qual);
final ArrayList<KeyValue> kvs = client.get(get).join();
assertSizeIs(1, kvs);
assertEquals(42, Bytes.getLong(kvs.get(0).value()));
// The sum was 0, but must have sent the increment anyway.