function EntityViewTest::setUp
Same name in other branches
- 8.x-3.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\BlockCode
protected function setUp() : void {
parent::setUp();
$this->installConfig([
'filter',
]);
$this->installEntitySchema('node');
$this->installEntitySchema('user');
$this->installSchema('system', [
'sequences',
]);
}