Example #1
0
 /**
  * Verify that the file is used by the stream manager.
  */
 public function testUsingAFileStream()
 {
     $this->manager->write('test');
     $this->manager->release();
     self::assertEquals('test', file_get_contents($this->file), 'The file was not used by the stream manager.');
 }