public function UnroutedUrlTest::testFromInvalidUri in Drupal 10
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Core/UnroutedUrlTest.php \Drupal\Tests\Core\UnroutedUrlTest::testFromInvalidUri()
- 9 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);
}