You are here

protected function ViewsIntegrationTest::additionalSetup in Entity Reference Hierarchy 3.x

Same name and namespace in other branches
  1. 8.2 tests/src/Kernel/ViewsIntegrationTest.php \Drupal\Tests\entity_hierarchy\Kernel\ViewsIntegrationTest::additionalSetup()

Perform additional setup.

Overrides EntityHierarchyTestTrait::additionalSetup

1 call to ViewsIntegrationTest::additionalSetup()
ViewsRevisionableIntegrationTest::additionalSetup in tests/src/Kernel/ViewsRevisionableIntegrationTest.php
Perform additional setup.
1 method overrides ViewsIntegrationTest::additionalSetup()
ViewsRevisionableIntegrationTest::additionalSetup in tests/src/Kernel/ViewsRevisionableIntegrationTest.php
Perform additional setup.

File

tests/src/Kernel/ViewsIntegrationTest.php, line 42

Class

ViewsIntegrationTest
Defines a class for testing views integration.

Namespace

Drupal\Tests\entity_hierarchy\Kernel

Code

protected function additionalSetup() {
  parent::additionalSetup();
  $this
    ->installConfig($this->testViewModule);
  $this
    ->installConfig('system');
  $this
    ->installSchema('system', [
    'key_value_expire',
  ]);
}