function VocabularyTest::createEntity

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

Overrides ResourceTestBase::createEntity

File

core/modules/jsonapi/tests/src/Functional/VocabularyTest.php, line 55

Class

VocabularyTest
JSON:API integration test for the "vocabulary" config entity type.

Namespace

Drupal\Tests\jsonapi\Functional

Code

protected function createEntity() {
    $vocabulary = Vocabulary::create([
        'name' => 'Llama',
        'vid' => 'llama',
    ]);
    $vocabulary->save();
    return $vocabulary;
}

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