@Test
public void testConstructorBufOffLen() throws Exception {
{
BitStream bs = new BitStream(new byte[32], Byte.SIZE * 16, Byte.SIZE * 16);
assertEquals(Byte.SIZE * 16, bs.available());
assertEquals(16, bs.bytes());
}
try {
BitStream bs = new BitStream(null, 0, 1);
fail();