Inheritance: implements App\Services\Filesystem\FilesystemInterface
 public function test_Should_DeleteFile()
 {
     $file = vfsStream::newFile('file')->at($this->rootDir);
     $fs = new LaravelFilesystem($this->app['files']);
     $fs->delete(vfsStream::url('rootDir/file'));
     $this->assertFileNotExists(vfsStream::url('rootDir/file'));
 }