public void pReadFully_byteArray() throws Exception {
try {
Stream stream = new Stream(sampleBytes());
byte[] sample = new byte[0];
stream.readFully(sample);
assertEquals(sampleBytes().length, stream.available());
sample = new byte[2];
stream.readFully(sample);