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