protected function NodeTypeTest::createEntity in JSON:API 8.2
Same name and namespace in other branches
- 8 tests/src/Functional/NodeTypeTest.php \Drupal\Tests\jsonapi\Functional\NodeTypeTest::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/ NodeTypeTest.php, line 47
Class
- NodeTypeTest
- JSON:API integration test for the "NodeType" config entity type.
Namespace
Drupal\Tests\jsonapi\FunctionalCode
protected function createEntity() {
// Create a "Camelids" node type.
$camelids = NodeType::create([
'name' => 'Camelids',
'type' => 'camelids',
'description' => 'Camelids are large, strictly herbivorous animals with slender necks and long legs.',
]);
$camelids
->save();
return $camelids;
}