| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 20 | public function testCopyFiles(): void |
||
| 21 | { |
||
| 22 | $this->fileSystem->copy( |
||
| 23 | [__DIR__ . '/FileSystemCopySource/SomeDir/someFile.txt' => 'renamedFile.txt'], |
||
| 24 | TEMP_DIR . '/destination' |
||
| 25 | ); |
||
| 26 | $this->assertFileExists(TEMP_DIR . '/destination'); |
||
| 27 | $this->assertFileExists(TEMP_DIR . '/destination/renamedFile.txt'); |
||
| 28 | } |
||
| 29 | |||
| 37 |