function DatabaseStorageTest::setUp

Overrides KernelTestBase::setUp

File

core/tests/Drupal/KernelTests/Core/Config/Storage/DatabaseStorageTest.php, line 18

Class

DatabaseStorageTest
Tests DatabaseStorage operations.

Namespace

Drupal\KernelTests\Core\Config\Storage

Code

protected function setUp() : void {
  parent::setUp();
  $this->storage = new DatabaseStorage($this->container
    ->get('database'), 'config');
  $this->invalidStorage = new DatabaseStorage($this->container
    ->get('database'), 'invalid');
  // ::listAll() verifications require other configuration data to exist.
  $this->storage
    ->write('system.performance', []);
}

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