protected function EntityTestDateRangeTest::createEntity in Drupal 9
Same name and namespace in other branches
- 8 core/modules/datetime_range/tests/src/Functional/EntityResource/EntityTest/EntityTestDateRangeTest.php \Drupal\Tests\datetime_range\Functional\EntityResource\EntityTest\EntityTestDateRangeTest::createEntity()
Creates the entity to be tested.
Return value
\Drupal\Core\Entity\EntityInterface The entity to be tested.
Overrides EntityTestResourceTestBase::createEntity
File
- core/
modules/ datetime_range/ tests/ src/ Functional/ EntityResource/ EntityTest/ EntityTestDateRangeTest.php, line 79
Class
- EntityTestDateRangeTest
- Tests the 'daterange' field's normalization.
Namespace
Drupal\Tests\datetime_range\Functional\EntityResource\EntityTestCode
protected function createEntity() {
$entity_test = EntityTest::create([
'name' => 'Llama',
'type' => static::$entityTypeId,
]);
$entity_test
->setOwnerId(0);
$entity_test
->save();
return $entity_test;
}