You are here

public function UnroutedUrlTest::testGetOptions in Drupal 8

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

Tests the getOptions() method.

@depends testFromUri @dataProvider providerFromUri

@covers ::getOptions

File

core/tests/Drupal/Tests/Core/UnroutedUrlTest.php, line 236

Class

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

Namespace

Drupal\Tests\Core

Code

public function testGetOptions($uri) {
  $url = Url::fromUri($uri);
  $this
    ->assertIsArray($url
    ->getOptions());
}