List<Checksum> checksums = RSync.checksums(oldValue.getBytes(), size);
List<Instruction> instructions = RSync.instructions(newValue.getBytes(), checksums, size);
System.out.println("checksums(" + checksums.size() + "): " + checksums);
System.out.println("instructions(" + instructions.size() + "): " + instructions);
DataBuffer reconstructedValue = RSync.reconstruct(oldValue.getBytes(), instructions, size);
Assert.assertArrayEquals(newValue.getBytes(), reconstructedValue.bytes());
}