public function testContentsInvalidFile()
 {
     $file = new SplFileInfo(__FILE__ . 'IDK');
     $this->expectException(NotReadableException::class);
     $file->getContents();
 }