You are here

protected function PagerKernelTest::setUp in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/views/src/Tests/Plugin/PagerKernelTest.php \Drupal\views\Tests\Plugin\PagerKernelTest::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/PagerKernelTest.php, line 34
Contains \Drupal\views\Tests\Plugin\PagerKernelTest.

Class

PagerKernelTest
Tests pager-related APIs.

Namespace

Drupal\views\Tests\Plugin

Code

protected function setUp($import_test_views = TRUE) {
  parent::setUp($import_test_views);
  $this
    ->installEntitySchema('node');
  $this
    ->installEntitySchema('user');
}