function UrlTest::testUrlFromRequestInvalid
Tests that an invalid request will thrown an exception.
@covers ::createFromRequest
      
    
File
- 
              core/
tests/ Drupal/ Tests/ Core/ UrlTest.php, line 258  
Class
- UrlTest
 - @coversDefaultClass \Drupal\Core\Url[[api-linebreak]] @group UrlTest
 
Namespace
Drupal\Tests\CoreCode
public function testUrlFromRequestInvalid() : void {
  $request = Request::create('/test-path');
  $this->router
    ->expects($this->once())
    ->method('matchRequest')
    ->with($request)
    ->will($this->throwException(new ResourceNotFoundException()));
  $this->expectException(ResourceNotFoundException::class);
  Url::createFromRequest($request);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.