You are here

protected function LinkAreaTest::setUpFixtures in Views link area 8

Sets up the configuration and schema of views and views_test_data modules.

Because the schema of views_test_data.module is dependent on the test using it, it cannot be enabled normally.

Overrides ViewsKernelTestBase::setUpFixtures

File

tests/src/Kernel/Plugin/LinkTest.php, line 56

Class

LinkAreaTest
Tests the page display plugin.

Namespace

Drupal\Tests\views_linkarea\Kernel\Plugin

Code

protected function setUpFixtures() {
  $this
    ->installEntitySchema('user');
  $this
    ->installEntitySchema('entity_test');
  $this
    ->installConfig([
    'entity_test',
  ]);
  parent::setUpFixtures();
}