You are here

protected function FieldStorageConfigTest::createEntity in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/jsonapi/tests/src/Functional/FieldStorageConfigTest.php \Drupal\Tests\jsonapi\Functional\FieldStorageConfigTest::createEntity()
  2. 10 core/modules/jsonapi/tests/src/Functional/FieldStorageConfigTest.php \Drupal\Tests\jsonapi\Functional\FieldStorageConfigTest::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/FieldStorageConfigTest.php, line 52

Class

FieldStorageConfigTest
JSON:API integration test for the "FieldStorageConfig" config entity type.

Namespace

Drupal\Tests\jsonapi\Functional

Code

protected function createEntity() {
  $field_storage = FieldStorageConfig::create([
    'field_name' => 'true_llama',
    'entity_type' => 'node',
    'type' => 'boolean',
  ]);
  $field_storage
    ->save();
  return $field_storage;
}