You are here

protected function DateFormatTest::createEntity in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/jsonapi/tests/src/Functional/DateFormatTest.php \Drupal\Tests\jsonapi\Functional\DateFormatTest::createEntity()
  2. 9 core/modules/jsonapi/tests/src/Functional/DateFormatTest.php \Drupal\Tests\jsonapi\Functional\DateFormatTest::createEntity()

File

core/modules/jsonapi/tests/src/Functional/DateFormatTest.php, line 57

Class

DateFormatTest
JSON:API integration test for the "DateFormat" config entity type.

Namespace

Drupal\Tests\jsonapi\Functional

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