protected function ConfigTestTest::createEntity in Drupal 9
Same name and namespace in other branches
- 8 core/modules/jsonapi/tests/src/Functional/ConfigTestTest.php \Drupal\Tests\jsonapi\Functional\ConfigTestTest::createEntity()
- 10 core/modules/jsonapi/tests/src/Functional/ConfigTestTest.php \Drupal\Tests\jsonapi\Functional\ConfigTestTest::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/ ConfigTestTest.php, line 65
Class
- ConfigTestTest
- JSON:API integration test for the "ConfigTest" config entity type.
Namespace
Drupal\Tests\jsonapi\FunctionalCode
protected function createEntity() {
$config_test = ConfigTest::create([
'id' => 'llama',
'label' => 'Llama',
]);
$config_test
->save();
return $config_test;
}