You are here

protected function RestResourceConfigTest::createEntity in JSON:API 8.2

Same name and namespace in other branches
  1. 8 tests/src/Functional/RestResourceConfigTest.php \Drupal\Tests\jsonapi\Functional\RestResourceConfigTest::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/RestResourceConfigTest.php, line 47

Class

RestResourceConfigTest
JSON:API integration test for the "RestResourceConfig" config entity type.

Namespace

Drupal\Tests\jsonapi\Functional

Code

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