protected function PathAliasTest::createEntity in Drupal 8
Same name and namespace in other branches
- 9 core/modules/jsonapi/tests/src/Functional/PathAliasTest.php \Drupal\Tests\jsonapi\Functional\PathAliasTest::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/ PathAliasTest.php, line 58
Class
- PathAliasTest
- JSON:API integration test for the "PathAlias" content entity type.
Namespace
Drupal\Tests\jsonapi\FunctionalCode
protected function createEntity() {
$path_alias = PathAlias::create([
'alias' => '/frontpage1',
'path' => '/<front>',
'langcode' => 'en',
]);
$path_alias
->save();
return $path_alias;
}