protected function WorkspaceMergerTest::setUp in Drupal 9
Same name and namespace in other branches
- 8 core/modules/workspaces/tests/src/Kernel/WorkspaceMergerTest.php \Drupal\Tests\workspaces\Kernel\WorkspaceMergerTest::setUp()
Overrides KernelTestBase::setUp
File
- core/
modules/ workspaces/ tests/ src/ Kernel/ WorkspaceMergerTest.php, line 54
Class
- WorkspaceMergerTest
- Tests workspace merging.
Namespace
Drupal\Tests\workspaces\KernelCode
protected function setUp() : void {
parent::setUp();
$this->entityTypeManager = \Drupal::entityTypeManager();
$this
->installEntitySchema('node');
$this
->installEntitySchema('user');
$this
->installConfig([
'filter',
'node',
'system',
]);
$this
->installSchema('system', [
'sequences',
]);
$this
->installSchema('node', [
'node_access',
]);
$this
->createContentType([
'type' => 'article',
]);
$this
->setCurrentUser($this
->createUser([
'administer nodes',
]));
}