You are here

protected function EntityViewTest::setUp in Chaos Tool Suite (ctools) 8.3

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() {
  parent::setUp();
  $this
    ->installConfig([
    'filter',
  ]);
  $this
    ->installEntitySchema('node');
  $this
    ->installEntitySchema('user');
  $this
    ->installSchema('system', [
    'sequences',
  ]);
}