Exemple #1
0
 public function testFloat32BE()
 {
     $this->resource = fopen(tempnam(sys_get_temp_dir(), 'binary'), 'a+');
     $stream = new Stream($this->resource);
     $stream->writeFloat32BE(12.34);
     $stream->setPosition(0);
     $this->assertEquals(12.34, $stream->readFloat32BE(), '', 1.0E-5);
 }