You are here

protected function PathAliasTest::createEntity in Drupal 9

Same name and namespace in other branches
  1. 8 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\Functional

Code

protected function createEntity() {
  $path_alias = PathAlias::create([
    'alias' => '/frontpage1',
    'path' => '/<front>',
    'langcode' => 'en',
  ]);
  $path_alias
    ->save();
  return $path_alias;
}