You are here

public function UrlTest::testGetRouteName in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 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\Core

Code

public function testGetRouteName($urls) {
  foreach ($urls as $index => $url) {
    $this
      ->assertSame($this->map[$index][0], $url
      ->getRouteName());
  }
}