| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 30 | public function testCopyDirectory(): void |
||
| 31 | { |
||
| 32 | $this->fileSystem->copy([__DIR__ . '/FileSystemCopySource/SomeDir' => 'NewDir'], TEMP_DIR . '/destination'); |
||
| 33 | $this->assertFileExists(TEMP_DIR . '/destination/NewDir'); |
||
| 34 | $this->assertFileExists(TEMP_DIR . '/destination/NewDir/someFile.txt'); |
||
| 35 | } |
||
| 36 | } |
||
| 37 |