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