protected function EntityViewDisplayTest::createEntity in Drupal 9
Same name and namespace in other branches
- 8 core/modules/jsonapi/tests/src/Functional/EntityViewDisplayTest.php \Drupal\Tests\jsonapi\Functional\EntityViewDisplayTest::createEntity()
- 10 core/modules/jsonapi/tests/src/Functional/EntityViewDisplayTest.php \Drupal\Tests\jsonapi\Functional\EntityViewDisplayTest::createEntity()
Creates the entity to be tested.
Return value
\Drupal\Core\Entity\EntityInterface The entity to be tested.
Overrides ResourceTestBase::createEntity
1 call to EntityViewDisplayTest::createEntity()
- LayoutBuilderEntityViewDisplayTest::createEntity in core/
modules/ layout_builder/ tests/ src/ Functional/ Jsonapi/ LayoutBuilderEntityViewDisplayTest.php - Creates the entity to be tested.
1 method overrides EntityViewDisplayTest::createEntity()
- LayoutBuilderEntityViewDisplayTest::createEntity in core/
modules/ layout_builder/ tests/ src/ Functional/ Jsonapi/ LayoutBuilderEntityViewDisplayTest.php - Creates the entity to be tested.
File
- core/
modules/ jsonapi/ tests/ src/ Functional/ EntityViewDisplayTest.php, line 53
Class
- EntityViewDisplayTest
- JSON:API integration test for the "EntityViewDisplay" config entity type.
Namespace
Drupal\Tests\jsonapi\FunctionalCode
protected function createEntity() {
// Create a "Camelids" node type.
$camelids = NodeType::create([
'name' => 'Camelids',
'type' => 'camelids',
]);
$camelids
->save();
// Create a view display.
$view_display = EntityViewDisplay::create([
'targetEntityType' => 'node',
'bundle' => 'camelids',
'mode' => 'default',
'status' => TRUE,
]);
$view_display
->save();
return $view_display;
}