protected function MenuTest::createEntity in JSON:API 8
Same name and namespace in other branches
- 8.2 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
- tests/
src/ Functional/ MenuTest.php, line 47
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;
}