function UrlTest::testGetRouteParameters
Same name in other branches
- 9 core/tests/Drupal/Tests/Core/UrlTest.php \Drupal\Tests\Core\UrlTest::testGetRouteParameters()
- 10 core/tests/Drupal/Tests/Core/UrlTest.php \Drupal\Tests\Core\UrlTest::testGetRouteParameters()
- 11.x core/tests/Drupal/Tests/Core/UrlTest.php \Drupal\Tests\Core\UrlTest::testGetRouteParameters()
Tests the getRouteParameters() method.
@depends testUrlFromRequest
@covers ::getRouteParameters
Parameters
\Drupal\Core\Url[] $urls: An array of Url objects.
File
-
core/
tests/ Drupal/ Tests/ Core/ UrlTest.php, line 436
Class
- UrlTest
- @coversDefaultClass \Drupal\Core\Url @group UrlTest
Namespace
Drupal\Tests\CoreCode
public function testGetRouteParameters($urls) {
foreach ($urls as $index => $url) {
$this->assertSame($this->map[$index][1], $url->getRouteParameters());
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.