@Test
public void testReadBytes() throws Exception {
InputStream in = new ByteArrayInputStream(new byte[] { (byte) 0x01,
(byte) 0x00, (byte) 0x01, (byte) 0xff, (byte) 0x00, (byte) 0x00 });
Decoder decoder = new MemcmpDecoder(in);
ByteBuffer bytes = decoder.readBytes(null);
assertArrayEquals(new byte[] { (byte) 0x01, (byte) 0x00, (byte) 0xff },
bytes.array());
}
@Test