コード例 #1
0
ファイル: TempFileTest.php プロジェクト: blar/filesystem
 public function testRealpath()
 {
     $file = new TempFile();
     $link = new TempFile();
     $link->unlink();
     $file->link($link);
     $this->assertSame($file->getPath(), $link->getRealPath());
 }