protected function EntityTestBundleResourceTestBase::createEntity in Drupal 9
Same name and namespace in other branches
- 8 core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestBundleResourceTestBase.php \Drupal\Tests\entity_test\Functional\Rest\EntityTestBundleResourceTestBase::createEntity()
Creates the entity to be tested.
Return value
\Drupal\Core\Entity\EntityInterface The entity to be tested.
Overrides EntityResourceTestBase::createEntity
File
- core/
modules/ system/ tests/ modules/ entity_test/ tests/ src/ Functional/ Rest/ EntityTestBundleResourceTestBase.php, line 40
Class
Namespace
Drupal\Tests\entity_test\Functional\RestCode
protected function createEntity() {
$entity_test_bundle = EntityTestBundle::create([
'id' => 'camelids',
'label' => 'Camelids',
'description' => 'Camelids are large, strictly herbivorous animals with slender necks and long legs.',
]);
$entity_test_bundle
->save();
return $entity_test_bundle;
}