コード例 #1
0
ファイル: FileLinkTest.php プロジェクト: ngangchill/php-vfs
 public function testSetContent()
 {
     $file = new File('');
     $link = new FileLink($file);
     $link->setContent('foo');
     $this->assertEquals('foo', $file->getContent());
 }