function UrlTest::testFromRoutedPathWithInvalidRoute
Tests fromUri() method with a user-entered path not matching any route.
@covers ::fromUri
      
    
File
- 
              core/tests/ Drupal/ Tests/ Core/ UrlTest.php, line 204 
Class
- UrlTest
- @coversDefaultClass \Drupal\Core\Url[[api-linebreak]] @group UrlTest
Namespace
Drupal\Tests\CoreCode
public function testFromRoutedPathWithInvalidRoute() : void {
  $this->pathValidator
    ->expects($this->once())
    ->method('getUrlIfValidWithoutAccessCheck')
    ->with('invalid-path')
    ->willReturn(FALSE);
  $url = Url::fromUri('internal:/invalid-path');
  $this->assertFalse($url->isRouted());
  $this->assertSame('base:invalid-path', $url->getUri());
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
