function 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\FunctionalCode
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;
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
