function ShortcutSetTest::createEntity
Same name in this branch
- 11.x core/modules/jsonapi/tests/src/Functional/ShortcutSetTest.php \Drupal\Tests\jsonapi\Functional\ShortcutSetTest::createEntity()
Same name and namespace in other branches
- 10 core/modules/jsonapi/tests/src/Functional/ShortcutSetTest.php \Drupal\Tests\jsonapi\Functional\ShortcutSetTest::createEntity()
- 9 core/modules/jsonapi/tests/src/Functional/ShortcutSetTest.php \Drupal\Tests\jsonapi\Functional\ShortcutSetTest::createEntity()
- 8.9.x core/modules/jsonapi/tests/src/Functional/ShortcutSetTest.php \Drupal\Tests\jsonapi\Functional\ShortcutSetTest::createEntity()
- main core/modules/jsonapi/tests/src/Functional/ShortcutSetTest.php \Drupal\Tests\jsonapi\Functional\ShortcutSetTest::createEntity()
- main core/modules/shortcut/tests/src/Functional/Jsonapi/ShortcutSetTest.php \Drupal\Tests\shortcut\Functional\Jsonapi\ShortcutSetTest::createEntity()
Creates the entity to be tested.
Return value
\Drupal\Core\Entity\EntityInterface The entity to be tested.
Overrides ResourceTestBase::createEntity
File
-
core/
modules/ shortcut/ tests/ src/ Functional/ Jsonapi/ ShortcutSetTest.php, line 84
Class
- ShortcutSetTest
- JSON:API integration test for the "ShortcutSet" config entity type.
Namespace
Drupal\Tests\shortcut\Functional\JsonapiCode
protected function createEntity() {
$set = ShortcutSet::create([
'id' => 'llama-set',
'label' => 'Llama Set',
]);
$set->save();
return $set;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.