/**
  * @expectedException \OutOfBoundsException
  * @dataProvider binaryReaders
  */
 public function testOutOfBoundsExceptionIsThrownWithLittleEndian($brBig, $brLittle)
 {
     $brLittle->readBits(360);
     $this->int32->read($brLittle);
 }
 /**
  * @return int
  */
 public function readUInt32()
 {
     return $this->int32Reader->read($this);
 }