Ejemplo n.º 1
0
 public function testUInt8LittleEndianOutsideBufferTwice()
 {
     $this->resource = fopen(tempnam(sys_get_temp_dir(), 'binary'), 'a+');
     $stream = new Stream($this->resource);
     $stream->writeUInt8LE(513);
     $stream->setPosition(0);
     $this->assertEquals(1, $stream->readUInt8LE());
 }