function UrlTest::testEntityUris
Same name in other branches
- 9 core/tests/Drupal/Tests/Core/UrlTest.php \Drupal\Tests\Core\UrlTest::testEntityUris()
- 8.9.x core/tests/Drupal/Tests/Core/UrlTest.php \Drupal\Tests\Core\UrlTest::testEntityUris()
- 11.x core/tests/Drupal/Tests/Core/UrlTest.php \Drupal\Tests\Core\UrlTest::testEntityUris()
Tests the fromUri() method with an entity: URI.
@covers ::fromUri
@dataProvider providerTestEntityUris
File
-
core/
tests/ Drupal/ Tests/ Core/ UrlTest.php, line 609
Class
- UrlTest
- @coversDefaultClass \Drupal\Core\Url @group UrlTest
Namespace
Drupal\Tests\CoreCode
public function testEntityUris($uri, $options, $route_name, $route_parameters, $query, $fragment) : void {
$url = Url::fromUri($uri, $options);
$this->assertSame($route_name, $url->getRouteName());
$this->assertEquals($route_parameters, $url->getRouteParameters());
$this->assertEquals($url->getOption('query'), $query);
$this->assertSame($url->getOption('fragment'), $fragment);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.