function AreaEntityTest::setUpFixtures
Same name in other branches
- 9 core/modules/views/tests/src/Kernel/Handler/AreaEntityTest.php \Drupal\Tests\views\Kernel\Handler\AreaEntityTest::setUpFixtures()
- 8.9.x core/modules/views/tests/src/Kernel/Handler/AreaEntityTest.php \Drupal\Tests\views\Kernel\Handler\AreaEntityTest::setUpFixtures()
- 11.x core/modules/views/tests/src/Kernel/Handler/AreaEntityTest.php \Drupal\Tests\views\Kernel\Handler\AreaEntityTest::setUpFixtures()
Overrides ViewsKernelTestBase::setUpFixtures
File
-
core/
modules/ views/ tests/ src/ Kernel/ Handler/ AreaEntityTest.php, line 46
Class
- AreaEntityTest
- Tests the generic entity area handler.
Namespace
Drupal\Tests\views\Kernel\HandlerCode
protected function setUpFixtures() {
// Install the themes used for this test.
$this->container
->get('theme_installer')
->install([
'olivero',
]);
$this->container
->get('config.factory')
->getEditable('system.theme')
->set('default', 'olivero')
->save();
$this->installEntitySchema('user');
$this->installEntitySchema('entity_test');
$this->installConfig([
'entity_test',
]);
$this->placeBlock('system_main_block', [
'id' => 'test_block',
]);
parent::setUpFixtures();
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.