protected function ViewTest::createEntity in JSON:API 8
Same name and namespace in other branches
- 8.2 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\FunctionalCode
protected function createEntity() {
  $view = View::create([
    'id' => 'test_rest',
    'label' => 'Test REST',
  ]);
  $view
    ->save();
  return $view;
}