/**
  * @return string
  */
 public function readUInt16()
 {
     return $this->int16Reader->read($this);
 }
示例#2
0
 /**
  * @expectedException \OutOfBoundsException
  * @dataProvider binaryReaders
  */
 public function testOutOfBoundsExceptionIsThrownWithLittleEndian($brBig, $brLittle)
 {
     $brLittle->readBits(360);
     $this->int16->read($brLittle);
 }