You are here

protected function RowEntityTest::setUp in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/views/src/Tests/Plugin/RowEntityTest.php \Drupal\views\Tests\Plugin\RowEntityTest::setUp()

Parameters

bool $import_test_views: Should the views specififed on the test class be imported. If you need to setup some additional stuff, like fields, you need to call false and then call createTestViews for your own.

Overrides ViewKernelTestBase::setUp

File

core/modules/views/src/Tests/Plugin/RowEntityTest.php, line 39
Contains \Drupal\views\Tests\Plugin\RowEntityTest.

Class

RowEntityTest
Tests the generic entity row plugin.

Namespace

Drupal\views\Tests\Plugin

Code

protected function setUp() {
  parent::setUp();
  $this
    ->installEntitySchema('taxonomy_term');
  $this
    ->installConfig(array(
    'taxonomy',
  ));
  \Drupal::service('router.builder')
    ->rebuild();
}