Ejemplo n.º 1
0
 public function testRealpath()
 {
     $file = new TempFile();
     $link = new TempFile();
     $link->unlink();
     $file->link($link);
     $this->assertSame($file->getPath(), $link->getRealPath());
 }