Example #1
0
 public function testGetDateModified()
 {
     $file = new File();
     $link = new FileLink($file);
     $this->assertInstanceOf('DateTime', $link->getDateModified());
     $this->assertNotSame($link->getDateModified(), $file->getDateModified());
 }
Example #2
0
 public function testGetDateModified()
 {
     $file = new File();
     $this->assertInstanceOf('DateTime', $file->getDateModified());
 }