public function UrlTest::testGetRouteName in Drupal 8
Tests the getRouteName() method.
@depends testUrlFromRequest
@covers ::getRouteName
Parameters
\Drupal\Core\Url[] $urls: An array of Url objects.
File
- core/
tests/ Drupal/ Tests/ Core/ UrlTest.php, line 409 - Contains \Drupal\Tests\Core\UrlTest.
Class
- UrlTest
- @coversDefaultClass \Drupal\Core\Url @group UrlTest
Namespace
Drupal\Tests\CoreCode
public function testGetRouteName($urls) {
foreach ($urls as $index => $url) {
$this
->assertSame($this->map[$index][0], $url
->getRouteName());
}
}