protected function RowEntityTest::setUp

Sets up Drupal unit test environment.

Overrides ViewUnitTestBase::setUp

See also

DrupalUnitTestBase::$modules

DrupalUnitTestBase

File

drupal/core/modules/views/lib/Drupal/views/Tests/Plugin/RowEntityTest.php, line 51
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
    ->installSchema('system', array(
    'menu_router',
  ));
  $this
    ->installSchema('taxonomy', array(
    'taxonomy_term_data',
    'taxonomy_term_hierarchy',
  ));
}