You are here

protected function ViewTest::createEntity in JSON:API 8.2

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

Class

ViewTest
JSON:API integration test for the "View" config entity type.

Namespace

Drupal\Tests\jsonapi\Functional

Code

protected function createEntity() {
  $view = View::create([
    'id' => 'test_rest',
    'label' => 'Test REST',
  ]);
  $view
    ->save();
  return $view;
}