You are here

protected function RemoteFileDeleteRecursiveTest::setUp in Drupal 10

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

Overrides FileTestBase::setUp

File

core/tests/Drupal/KernelTests/Core/File/RemoteFileDeleteRecursiveTest.php, line 33

Class

RemoteFileDeleteRecursiveTest
Tests the unmanaged file delete recursive function.

Namespace

Drupal\KernelTests\Core\File

Code

protected function setUp() : void {
  parent::setUp();
  $this
    ->config('system.file')
    ->set('default_scheme', 'dummy-remote')
    ->save();
}