function FileMoveTest::testMissing

Try to move a missing file.

File

core/tests/Drupal/KernelTests/Core/File/FileMoveTest.php, line 56

Class

FileMoveTest
Tests the unmanaged file move function.

Namespace

Drupal\KernelTests\Core\File

Code

public function testMissing() : void {
  // 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.