public function testRmDirRecursive()
 {
     $this->guy->createTestFolderTree($this->tmpPath1);
     $this->assertTrue($this->guy->isTestFolderTree($this->tmpPath1));
     FileSystemTools::rmDirRecursive($this->tmpPath1);
     $this->assertFalse(is_dir($this->tmpPath1));
 }