function UnmanagedDeleteTest::testMissing

Try deleting a missing file.

File

drupal/core/modules/system/lib/Drupal/system/Tests/File/UnmanagedDeleteTest.php, line 37
Definition of Drupal\system\Tests\File\UnmanagedDeleteTest.

Class

UnmanagedDeleteTest
Deletion related tests.

Namespace

Drupal\system\Tests\File

Code

function testMissing() {

  // Try to delete a non-existing file
  $this
    ->assertTrue(file_unmanaged_delete(file_default_scheme() . '/' . $this
    ->randomName()), 'Returns true when deleting a non-existent file.');
}