function FileMoveTest::testMissing
Try to move a missing file.
File
- 
              core/tests/ Drupal/ KernelTests/ Core/ File/ FileMoveTest.php, line 54 
Class
- FileMoveTest
- Tests the unmanaged file move function.
Namespace
Drupal\KernelTests\Core\FileCode
public function testMissing() {
  // Move non-existent file.
  $this->expectException(FileNotExistsException::class);
  \Drupal::service('file_system')->move($this->randomMachineName(), $this->randomMachineName());
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
