public function UnroutedUrlTest::testGetOptions in Drupal 9
Same name and namespace in other branches
- 8 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\CoreCode
public function testGetOptions($uri) {
$url = Url::fromUri($uri);
$this
->assertIsArray($url
->getOptions());
}