public function testGetDateModified() { $file = new File(); $link = new FileLink($file); $this->assertInstanceOf('DateTime', $link->getDateModified()); $this->assertNotSame($link->getDateModified(), $file->getDateModified()); }
public function testGetSize() { $file = new File('foo'); $this->assertEquals(3, $file->getSize()); }