Example #1
0
 public function testAppend()
 {
     $append = vfsStream::newFile('append.txt', 0777);
     $this->root->addChild($append);
     $append->setContent('PHPUNIT');
     $file = new File($append->url());
     $file->append('APPENDED');
     $this->assertEquals('PHPUNITAPPENDED', file_get_contents($append->url()));
 }