public function testWriteEquals()
 {
     $access = new PhpStreamAccess($this->getStream());
     $access->writeEquals();
     $this->assertEquals(" = ", $this->getStream()->getBinary());
     $this->getStream()->flush();
     $access->writeEquals(false);
     $this->assertEquals("=", $this->getStream()->getBinary());
 }