function EntityViewTest::setUp

Same name in other branches
  1. 4.0.x tests/src/Kernel/Plugin/Block/EntityViewTest.php \Drupal\Tests\ctools\Kernel\Plugin\Block\EntityViewTest::setUp()

Overrides KernelTestBase::setUp

File

tests/src/Kernel/Plugin/Block/EntityViewTest.php, line 45

Class

EntityViewTest
Tests the entity_view block plugin.

Namespace

Drupal\Tests\ctools\Kernel\Plugin\Block

Code

protected function setUp() : void {
    parent::setUp();
    $this->installConfig([
        'filter',
    ]);
    $this->installEntitySchema('node');
    $this->installEntitySchema('user');
    $this->installSchema('system', [
        'sequences',
    ]);
}