public function EntityUrlTest::testUrlEmpty in Drupal 8
Tests the url() method without an entity ID.
@covers ::url @covers ::hasLinkTemplate @covers ::linkTemplates
@dataProvider providerTestUrl
@group legacy @expectedDeprecation EntityInterface::url() is deprecated in Drupal 8.0.0 and will be removed in Drupal 9.0.0. EntityInterface::toUrl() instead. Note, a \Drupal\Core\Url object is returned. See https://www.drupal.org/node/2614344
Parameters
string $rel: The link relation to test.
File
- core/
tests/ Drupal/ Tests/ Core/ Entity/ EntityUrlTest.php, line 460
Class
- EntityUrlTest
- Tests URL handling of the \Drupal\Core\Entity\Entity class.
Namespace
Drupal\Tests\Core\EntityCode
public function testUrlEmpty($rel) {
$entity = $this
->getEntity(EntityBase::class, []);
$this
->assertEquals('', $entity
->url($rel));
}