public function UrlTest::testGetRouteName in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/tests/Drupal/Tests/Core/UrlTest.php \Drupal\Tests\Core\UrlTest::testGetRouteName()
 
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 399  - 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());
  }
}