You are here

protected function SectionStorageTestBase::setUp in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/layout_builder/tests/src/Kernel/SectionStorageTestBase.php \Drupal\Tests\layout_builder\Kernel\SectionStorageTestBase::setUp()

Overrides EntityKernelTestBase::setUp

File

core/modules/layout_builder/tests/src/Kernel/SectionStorageTestBase.php, line 33

Class

SectionStorageTestBase
Provides a base class for testing implementations of section storage.

Namespace

Drupal\Tests\layout_builder\Kernel

Code

protected function setUp() {
  parent::setUp();
  $this
    ->installSchema('system', [
    'key_value_expire',
  ]);
  $section_data = [
    new Section('layout_test_plugin', [], [
      'first-uuid' => new SectionComponent('first-uuid', 'content', [
        'id' => 'foo',
      ]),
    ]),
    new Section('layout_test_plugin', [
      'setting_1' => 'bar',
    ], [
      'second-uuid' => new SectionComponent('second-uuid', 'content', [
        'id' => 'foo',
      ]),
    ]),
  ];
  $this->sectionStorage = $this
    ->getSectionStorage($section_data);
}