public void pReadUnsignedByte_void() throws Exception {
try {
Stream stream = new Stream();
stream.writeBit(1);
stream.write(sampleBytes());
stream.writeBit(1);
stream.readBit();
for (int i = 0; i < sampleBytes().length; i++) {
assertEquals(sampleBytes()[i] & 0xff, stream.readUnsignedByte());