You are here

protected function VocabularyTest::createEntity in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/jsonapi/tests/src/Functional/VocabularyTest.php \Drupal\Tests\jsonapi\Functional\VocabularyTest::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/VocabularyTest.php, line 52

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