You are here

protected function TourTest::createEntity in Drupal 9

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

Creates the entity to be tested.

Return value

\Drupal\Core\Entity\EntityInterface The entity to be tested.

Overrides ResourceTestBase::createEntity

File

core/modules/jsonapi/tests/src/Functional/TourTest.php, line 52

Class

TourTest
JSON:API integration test for the "Tour" config entity type.

Namespace

Drupal\Tests\jsonapi\Functional

Code

protected function createEntity() {
  $tour = Tour::create([
    'id' => 'tour-llama',
    'label' => 'Llama tour',
    'langcode' => 'en',
    'module' => 'tour',
    'routes' => [
      [
        'route_name' => '<front>',
      ],
    ],
    'tips' => [
      'tour-llama-1' => [
        'id' => 'tour-llama-1',
        'plugin' => 'text',
        'label' => 'Llama',
        'body' => 'Who handle the awesomeness of llamas?',
        'weight' => 100,
        'selector' => '#tour-llama-1',
      ],
    ],
  ]);
  $tour
    ->save();
  return $tour;
}