protected function RestResourceConfigResourceTestBase::createEntity in Drupal 8
Same name and namespace in other branches
- 9 core/modules/rest/tests/src/Functional/Rest/RestResourceConfigResourceTestBase.php \Drupal\Tests\rest\Functional\Rest\RestResourceConfigResourceTestBase::createEntity()
Creates the entity to be tested.
Return value
\Drupal\Core\Entity\EntityInterface The entity to be tested.
Overrides EntityResourceTestBase::createEntity
File
- core/
modules/ rest/ tests/ src/ Functional/ Rest/ RestResourceConfigResourceTestBase.php, line 35
Class
Namespace
Drupal\Tests\rest\Functional\RestCode
protected function createEntity() {
$rest_resource_config = RestResourceConfig::create([
'id' => 'llama',
'plugin_id' => 'dblog',
'granularity' => 'method',
'configuration' => [
'GET' => [
'supported_formats' => [
'json',
],
'supported_auth' => [
'cookie',
],
],
],
]);
$rest_resource_config
->save();
return $rest_resource_config;
}