function 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 60  
Class
- MenuTest
 - JSON:API integration test for the "Menu" config entity type.
 
Namespace
Drupal\Tests\jsonapi\FunctionalCode
protected function createEntity() {
  $menu = Menu::create([
    'id' => 'menu',
    'label' => 'Menu',
    'description' => 'Menu',
  ]);
  $menu->save();
  return $menu;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.