function TourTest::createEntity

Same name and namespace in other branches
  1. 8.9.x core/modules/jsonapi/tests/src/Functional/TourTest.php \Drupal\Tests\jsonapi\Functional\TourTest::createEntity()
  2. 10 core/modules/tour/tests/src/Functional/Jsonapi/TourTest.php \Drupal\Tests\tour\Functional\Jsonapi\TourTest::createEntity()
  3. 11.x core/modules/tour/tests/src/Functional/Jsonapi/TourTest.php \Drupal\Tests\tour\Functional\Jsonapi\TourTest::createEntity()

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

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.