You are here

public function FileDeleteTest::testNormal in Drupal 10

Same name and namespace in other branches
  1. 8 core/tests/Drupal/KernelTests/Core/File/FileDeleteTest.php \Drupal\KernelTests\Core\File\FileDeleteTest::testNormal()
  2. 9 core/tests/Drupal/KernelTests/Core/File/FileDeleteTest.php \Drupal\KernelTests\Core\File\FileDeleteTest::testNormal()

Delete a normal file.

File

core/tests/Drupal/KernelTests/Core/File/FileDeleteTest.php, line 17

Class

FileDeleteTest
Tests the unmanaged file delete function.

Namespace

Drupal\KernelTests\Core\File

Code

public function testNormal() {

  // Create a file for testing
  $uri = $this
    ->createUri();

  // Delete a regular file
  $this
    ->assertTrue(\Drupal::service('file_system')
    ->delete($uri), 'Deleted worked.');
  $this
    ->assertFileDoesNotExist($uri);
}