public function FileCopyTest::testNonExistent in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/KernelTests/Core/File/FileCopyTest.php \Drupal\KernelTests\Core\File\FileCopyTest::testNonExistent()
Copy a non-existent file.
File
- core/
tests/ Drupal/ KernelTests/ Core/ File/ FileCopyTest.php, line 51
Class
- FileCopyTest
- Tests the unmanaged file copy function.
Namespace
Drupal\KernelTests\Core\FileCode
public function testNonExistent() {
// Copy non-existent file
$desired_filepath = $this
->randomMachineName();
$this
->assertFileNotExists($desired_filepath);
$this
->expectException(FileNotExistsException::class);
$new_filepath = \Drupal::service('file_system')
->copy($desired_filepath, $this
->randomMachineName());
$this
->assertFalse($new_filepath, 'Copying a missing file fails.');
}