You are here

public function UrlTest::testGetRouteParameters in Drupal 8

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
Contains \Drupal\Tests\Core\UrlTest.

Class

UrlTest
@coversDefaultClass \Drupal\Core\Url @group UrlTest

Namespace

Drupal\Tests\Core

Code

public function testGetRouteParameters($urls) {
  foreach ($urls as $index => $url) {
    $this
      ->assertSame($this->map[$index][1], $url
      ->getRouteParameters());
  }
}