protected function ContentLanguageSettingsTest::createEntity in Drupal 9
Same name and namespace in other branches
- 8 core/modules/jsonapi/tests/src/Functional/ContentLanguageSettingsTest.php \Drupal\Tests\jsonapi\Functional\ContentLanguageSettingsTest::createEntity()
- 10 core/modules/jsonapi/tests/src/Functional/ContentLanguageSettingsTest.php \Drupal\Tests\jsonapi\Functional\ContentLanguageSettingsTest::createEntity()
Creates the entity to be tested.
Return value
\Drupal\Core\Entity\EntityInterface The entity to be tested.
Overrides ResourceTestBase::createEntity
File
- core/
modules/ jsonapi/ tests/ src/ Functional/ ContentLanguageSettingsTest.php, line 55
Class
- ContentLanguageSettingsTest
- JSON:API integration test for "ContentLanguageSettings" 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();
$entity = ContentLanguageSettings::create([
'target_entity_type_id' => 'node',
'target_bundle' => 'camelids',
]);
$entity
->setDefaultLangcode('site_default')
->save();
return $entity;
}