Esempio n. 1
0
 public function testMirrorCreatesEmptyDirectory()
 {
     $sourcePath = $this->workspace . DIRECTORY_SEPARATOR . 'source' . DIRECTORY_SEPARATOR;
     mkdir($sourcePath);
     $targetPath = $this->workspace . DIRECTORY_SEPARATOR . 'target' . DIRECTORY_SEPARATOR;
     $this->filesystem->mirror($sourcePath, $targetPath);
     $this->assertTrue(is_dir($targetPath));
     $this->filesystem->remove($sourcePath);
 }