function testCreateEmpty()
 {
     $file = File::createEmpty();
     $this->assertTrue($file instanceof File);
     $this->assertSame($file->isDeleted(), false);
     $this->assertSame($file->getPath(), '');
     $this->assertSame($file->isValid(), true);
 }