function ViewsKernelTestBase::setUp

Same name and namespace in other branches
  1. 9 core/modules/views/tests/src/Kernel/ViewsKernelTestBase.php \Drupal\Tests\views\Kernel\ViewsKernelTestBase::setUp()
  2. 10 core/modules/views/tests/src/Kernel/ViewsKernelTestBase.php \Drupal\Tests\views\Kernel\ViewsKernelTestBase::setUp()
  3. 11.x core/modules/views/tests/src/Kernel/ViewsKernelTestBase.php \Drupal\Tests\views\Kernel\ViewsKernelTestBase::setUp()

Parameters

bool $import_test_views: Should the views specified 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 KernelTestBase::setUp

63 calls to ViewsKernelTestBase::setUp()
AreaDisplayLinkTest::setUp in core/modules/views/tests/src/Kernel/Handler/AreaDisplayLinkTest.php
AreaEmptyTest::setUp in core/modules/views/tests/src/Kernel/Handler/AreaEmptyTest.php
AreaEntityTest::setUp in core/modules/views/tests/src/Kernel/Handler/AreaEntityTest.php
AreaTextTest::setUp in core/modules/views/tests/src/Kernel/Handler/AreaTextTest.php
ArgumentUidRevisionTest::setUp in core/modules/node/tests/src/Kernel/Views/ArgumentUidRevisionTest.php

... See full list

63 methods override ViewsKernelTestBase::setUp()
AreaDisplayLinkTest::setUp in core/modules/views/tests/src/Kernel/Handler/AreaDisplayLinkTest.php
AreaEmptyTest::setUp in core/modules/views/tests/src/Kernel/Handler/AreaEmptyTest.php
AreaEntityTest::setUp in core/modules/views/tests/src/Kernel/Handler/AreaEntityTest.php
AreaTextTest::setUp in core/modules/views/tests/src/Kernel/Handler/AreaTextTest.php
ArgumentUidRevisionTest::setUp in core/modules/node/tests/src/Kernel/Views/ArgumentUidRevisionTest.php

... See full list

File

core/modules/views/tests/src/Kernel/ViewsKernelTestBase.php, line 48

Class

ViewsKernelTestBase
Defines a base class for Views kernel testing.

Namespace

Drupal\Tests\views\Kernel

Code

protected function setUp($import_test_views = TRUE) {
    parent::setUp();
    $this->installSchema('system', [
        'sequences',
        'key_value_expire',
    ]);
    $this->setUpFixtures();
    if ($import_test_views) {
        ViewTestData::createTestViews(get_class($this), [
            'views_test_config',
        ]);
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.