You are here

public function UrlTest::testGetOptions in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/tests/Drupal/Tests/Core/UrlTest.php \Drupal\Tests\Core\UrlTest::testGetOptions()

Tests the getOptions() method.

@depends testUrlFromRequest

@covers ::getOptions

Parameters

\Drupal\Core\Url[] $urls: An array of Url objects.

File

core/tests/Drupal/Tests/Core/UrlTest.php, line 453
Contains \Drupal\Tests\Core\UrlTest.

Class

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

Namespace

Drupal\Tests\Core

Code

public function testGetOptions($urls) {
  foreach ($urls as $index => $url) {
    $this
      ->assertSame($this->map[$index][2], $url
      ->getOptions());
  }
}