You are here

protected function SplitCollectionStorageTest::setUp in Configuration Split 2.0.x

Overrides MemoryStorageTest::setUp

File

tests/src/Kernel/SplitCollectionStorageTest.php, line 26

Class

SplitCollectionStorageTest
Test the SplitCollectionStorage.

Namespace

Drupal\Tests\config_split\Kernel

Code

protected function setUp() : void {
  parent::setUp();

  // Keep the inner storage handy.
  $this->inner = $this->storage;
  $this->storage = new SplitCollectionStorage($this->inner, 'graft');
  $this->storage
    ->write('system.performance', []);
}