protected function FieldStorageConfigTest::createEntity in JSON:API 8.2
Same name and namespace in other branches
- 8 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
- tests/
src/ Functional/ FieldStorageConfigTest.php, line 47
Class
- FieldStorageConfigTest
- JSON:API integration test for the "FieldStorageConfig" config entity type.
Namespace
Drupal\Tests\jsonapi\FunctionalCode
protected function createEntity() {
$field_storage = FieldStorageConfig::create([
'field_name' => 'true_llama',
'entity_type' => 'node',
'type' => 'boolean',
]);
$field_storage
->save();
return $field_storage;
}