/**
  * @covers DmFileman\Service\FileManager\FileManager
  */
 public function testDeleteDeletesFolders()
 {
     $this->assertFileExists(vfs\vfsStream::url('upload/orig/old'));
     $actualResult = $this->sut->delete('/old');
     $this->assertTrue($actualResult);
     $this->assertFileExists(vfs\vfsStream::url('upload/orig'));
     $this->assertFileNotExists(vfs\vfsStream::url('upload/orig/old'));
 }