function UrlTest::testFromRouteUriWithMissingRouteName
Tests from route uri with missing route name.
@legacy-covers ::fromUri
File
-
core/
tests/ Drupal/ Tests/ Core/ UrlTest.php, line 841
Class
- UrlTest
- Tests Drupal\Core\Url.
Namespace
Drupal\Tests\CoreCode
public function testFromRouteUriWithMissingRouteName() : void {
$this->expectException(\InvalidArgumentException::class);
$this->expectExceptionMessage("The route URI 'route:' is invalid.");
Url::fromUri('route:');
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.