protected function DateFormatResourceTestBase::createEntity in Drupal 9
Same name and namespace in other branches
- 8 core/tests/Drupal/FunctionalTests/Rest/DateFormatResourceTestBase.php \Drupal\FunctionalTests\Rest\DateFormatResourceTestBase::createEntity()
Creates the entity to be tested.
Return value
\Drupal\Core\Entity\EntityInterface The entity to be tested.
Overrides EntityResourceTestBase::createEntity
File
- core/
tests/ Drupal/ FunctionalTests/ Rest/ DateFormatResourceTestBase.php, line 40
Class
- DateFormatResourceTestBase
- ResourceTestBase for DateFormat entity.
Namespace
Drupal\FunctionalTests\RestCode
protected function createEntity() {
// Create a date format.
$date_format = DateFormat::create([
'id' => 'llama',
'label' => 'Llama',
'pattern' => 'F d, Y',
]);
$date_format
->save();
return $date_format;
}