function ViewTest::createEntity

Same name and namespace in other branches
  1. 9 core/modules/jsonapi/tests/src/Functional/ViewTest.php \Drupal\Tests\jsonapi\Functional\ViewTest::createEntity()
  2. 8.9.x core/modules/jsonapi/tests/src/Functional/ViewTest.php \Drupal\Tests\jsonapi\Functional\ViewTest::createEntity()
  3. 10 core/modules/jsonapi/tests/src/Functional/ViewTest.php \Drupal\Tests\jsonapi\Functional\ViewTest::createEntity()

Overrides ResourceTestBase::createEntity

File

core/modules/jsonapi/tests/src/Functional/ViewTest.php, line 55

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

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.