function PathAliasResourceTestBase::createEntity
Creates the entity to be tested.
Return value
\Drupal\Core\Entity\EntityInterface The entity to be tested.
Overrides EntityResourceTestBase::createEntity
File
- 
              core/
modules/ path_alias/ tests/ src/ Functional/ Rest/ PathAliasResourceTestBase.php, line 51  
Class
- PathAliasResourceTestBase
 - Base class for path_alias EntityResource tests.
 
Namespace
Drupal\Tests\path_alias\Functional\RestCode
protected function createEntity() {
  $path_alias = PathAlias::create([
    'path' => '/<front>',
    'alias' => '/frontpage1',
  ]);
  $path_alias->save();
  return $path_alias;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.