protected function AreaEntityTest::setUpFixtures in Drupal 8
Same name and namespace in other branches
- 9 core/modules/views/tests/src/Kernel/Handler/AreaEntityTest.php \Drupal\Tests\views\Kernel\Handler\AreaEntityTest::setUpFixtures()
Sets up the configuration and schema of views and views_test_data modules.
Because the schema of views_test_data.module is dependent on the test using it, it cannot be enabled normally.
Overrides ViewsKernelTestBase::setUpFixtures
File
- core/
modules/ views/ tests/ src/ Kernel/ Handler/ AreaEntityTest.php, line 47
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([
'bartik',
]);
$this->container
->get('config.factory')
->getEditable('system.theme')
->set('default', 'bartik')
->save();
$this
->installEntitySchema('user');
$this
->installEntitySchema('entity_test');
$this
->installConfig([
'entity_test',
]);
$this
->placeBlock('system_main_block', [
'id' => 'test_block',
]);
parent::setUpFixtures();
}