function FileSystemTest::testCopyFailureIfSelfOverwrite
Same name in other branches
- 9 core/tests/Drupal/KernelTests/Core/File/FileSystemTest.php \Drupal\KernelTests\Core\File\FileSystemTest::testCopyFailureIfSelfOverwrite()
- 10 core/tests/Drupal/KernelTests/Core/File/FileSystemTest.php \Drupal\KernelTests\Core\File\FileSystemTest::testCopyFailureIfSelfOverwrite()
- 11.x core/tests/Drupal/KernelTests/Core/File/FileSystemTest.php \Drupal\KernelTests\Core\File\FileSystemTest::testCopyFailureIfSelfOverwrite()
@covers ::copy
File
-
core/
tests/ Drupal/ KernelTests/ Core/ File/ FileSystemTest.php, line 76
Class
- FileSystemTest
- @coversDefaultClass \Drupal\Core\File\FileSystem @group File
Namespace
Drupal\KernelTests\Core\FileCode
public function testCopyFailureIfSelfOverwrite() {
$this->expectException(FileException::class);
$this->expectExceptionMessage("'public://test.txt' could not be copied because it would overwrite itself");
$uri = 'public://test.txt';
touch($uri);
$this->fileSystem
->copy($uri, $uri, FileSystemInterface::EXISTS_REPLACE);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.