function UrlTest::testFromInvalidInternalUri
Same name in other branches
- 9 core/tests/Drupal/Tests/Core/UrlTest.php \Drupal\Tests\Core\UrlTest::testFromInvalidInternalUri()
- 8.9.x core/tests/Drupal/Tests/Core/UrlTest.php \Drupal\Tests\Core\UrlTest::testFromInvalidInternalUri()
- 11.x core/tests/Drupal/Tests/Core/UrlTest.php \Drupal\Tests\Core\UrlTest::testFromInvalidInternalUri()
Tests the fromUri() method with an invalid internal: URI.
@covers ::fromUri @dataProvider providerFromInvalidInternalUri
File
-
core/
tests/ Drupal/ Tests/ Core/ UrlTest.php, line 747
Class
- UrlTest
- @coversDefaultClass \Drupal\Core\Url @group UrlTest
Namespace
Drupal\Tests\CoreCode
public function testFromInvalidInternalUri($path) : void {
$this->expectException(\InvalidArgumentException::class);
Url::fromUri('internal:' . $path);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.