function FileTestBase::setUp

Same name and namespace in other branches
  1. 11.x core/tests/Drupal/KernelTests/Core/File/FileTestBase.php \Drupal\KernelTests\Core\File\FileTestBase::setUp()
  2. 10 core/tests/Drupal/KernelTests/Core/File/FileTestBase.php \Drupal\KernelTests\Core\File\FileTestBase::setUp()
1 method overrides FileTestBase::setUp()
StreamWrapperTest::setUp in core/tests/Drupal/KernelTests/Core/File/StreamWrapperTest.php

File

core/tests/Drupal/KernelTests/Core/File/FileTestBase.php, line 37

Class

FileTestBase
Provides file-specific assertions and helper functions.

Namespace

Drupal\KernelTests\Core\File

Code

protected function setUp() {
  parent::setUp();
  // \Drupal\KernelTests\KernelTestBase::bootKernel() sets a global override
  // for the default scheme because core relies on it in
  // file_default_scheme(). As we are creating the configuration here remove
  // the global override.
  unset($GLOBALS['config']['system.file']);
  \Drupal::configFactory()->getEditable('system.file')
    ->set('default_scheme', 'public')
    ->save();
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.