You are here

protected function MenuTest::createEntity in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/jsonapi/tests/src/Functional/MenuTest.php \Drupal\Tests\jsonapi\Functional\MenuTest::createEntity()

Creates the entity to be tested.

Return value

\Drupal\Core\Entity\EntityInterface The entity to be tested.

Overrides ResourceTestBase::createEntity

File

core/modules/jsonapi/tests/src/Functional/MenuTest.php, line 57

Class

MenuTest
JSON:API integration test for the "Menu" config entity type.

Namespace

Drupal\Tests\jsonapi\Functional

Code

protected function createEntity() {
  $menu = Menu::create([
    'id' => 'menu',
    'label' => 'Menu',
    'description' => 'Menu',
  ]);
  $menu
    ->save();
  return $menu;
}