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