You are here

protected function DateFormatResourceTestBase::createEntity in Drupal 8

Same name and namespace in other branches
  1. 9 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\Rest

Code

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;
}