function TermTest::createEntity

Same name in other branches
  1. 9 core/modules/jsonapi/tests/src/Functional/TermTest.php \Drupal\Tests\jsonapi\Functional\TermTest::createEntity()
  2. 10 core/modules/jsonapi/tests/src/Functional/TermTest.php \Drupal\Tests\jsonapi\Functional\TermTest::createEntity()
  3. 11.x core/modules/jsonapi/tests/src/Functional/TermTest.php \Drupal\Tests\jsonapi\Functional\TermTest::createEntity()

Overrides ResourceTestBase::createEntity

File

core/modules/jsonapi/tests/src/Functional/TermTest.php, line 88

Class

TermTest
JSON:API integration test for the "Term" content entity type.

Namespace

Drupal\Tests\jsonapi\Functional

Code

protected function createEntity() {
    $vocabulary = Vocabulary::load('camelids');
    if (!$vocabulary) {
        // Create a "Camelids" vocabulary.
        $vocabulary = Vocabulary::create([
            'name' => 'Camelids',
            'vid' => 'camelids',
        ]);
        $vocabulary->save();
    }
    // Create a "Llama" taxonomy term.
    $term = Term::create([
        'vid' => $vocabulary->id(),
    ])
        ->setName('Llama')
        ->setDescription("It is a little known fact that llamas cannot count higher than seven.")
        ->setChangedTime(123456789)
        ->set('path', '/llama');
    $term->save();
    return $term;
}

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