コード例 #1
0
ファイル: FileLinkTest.php プロジェクト: ngangchill/php-vfs
 public function testGetDateAccessed()
 {
     $file = new File();
     $link = new FileLink($file);
     $this->assertInstanceOf('DateTime', $link->getDateAccessed());
     $this->assertNotSame($link->getDateAccessed(), $file->getDateAccessed());
 }
コード例 #2
0
ファイル: FileTest.php プロジェクト: ngangchill/php-vfs
 public function testGetDateAccessed()
 {
     $file = new File();
     $this->assertInstanceOf('DateTime', $file->getDateAccessed());
 }