function EntityViewDisplayTest::createEntity
Same name in other branches
- 9 core/modules/jsonapi/tests/src/Functional/EntityViewDisplayTest.php \Drupal\Tests\jsonapi\Functional\EntityViewDisplayTest::createEntity()
- 8.9.x core/modules/jsonapi/tests/src/Functional/EntityViewDisplayTest.php \Drupal\Tests\jsonapi\Functional\EntityViewDisplayTest::createEntity()
- 11.x core/modules/jsonapi/tests/src/Functional/EntityViewDisplayTest.php \Drupal\Tests\jsonapi\Functional\EntityViewDisplayTest::createEntity()
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 55
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;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.