You are here

protected function LayoutSelectionFieldTest::setUp in Layout builder library 8

Overrides KernelTestBase::setUp

File

tests/src/Kernel/LayoutSelectionFieldTest.php, line 37

Class

LayoutSelectionFieldTest
Tests the internal handling of the layout_selection field.

Namespace

Drupal\Tests\layout_library\Kernel

Code

protected function setUp() {
  parent::setUp();
  $this
    ->installConfig('node');
  $this
    ->installSchema('system', [
    'key_value_expire',
  ]);
  $this
    ->createContentType([
    'type' => 'test',
  ]);
}