function UnroutedUrlTest::testFromInvalidUri
Same name in other branches
- 8.9.x core/tests/Drupal/Tests/Core/UnroutedUrlTest.php \Drupal\Tests\Core\UnroutedUrlTest::testFromInvalidUri()
- 10 core/tests/Drupal/Tests/Core/UnroutedUrlTest.php \Drupal\Tests\Core\UnroutedUrlTest::testFromInvalidUri()
- 11.x core/tests/Drupal/Tests/Core/UnroutedUrlTest.php \Drupal\Tests\Core\UnroutedUrlTest::testFromInvalidUri()
Tests the fromUri() method.
@covers ::fromUri @dataProvider providerFromInvalidUri
File
-
core/
tests/ Drupal/ Tests/ Core/ UnroutedUrlTest.php, line 105
Class
- UnroutedUrlTest
- @coversDefaultClass \Drupal\Core\Url @group UrlTest
Namespace
Drupal\Tests\CoreCode
public function testFromInvalidUri($uri) {
$this->expectException(\InvalidArgumentException::class);
$url = Url::fromUri($uri);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.