public void pRead_byteArray() throws Exception {
try {
Stream stream = new Stream();
stream.writeBit(1);
stream.write(sampleBytes());
stream.writeBit(1);
stream.write(sampleBytes());
byte[] sample = new byte[sampleBytes().length];
stream.readBit();
assertEquals(sampleBytes().length, stream.read(sample));