You are here

public function UnroutedUrlTest::testCreateFromRequest in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/tests/Drupal/Tests/Core/UnroutedUrlTest.php \Drupal\Tests\Core\UnroutedUrlTest::testCreateFromRequest()

Tests the createFromRequest method.

@covers ::createFromRequest

@expectedException \Symfony\Component\Routing\Exception\ResourceNotFoundException

File

core/tests/Drupal/Tests/Core/UnroutedUrlTest.php, line 143
Contains \Drupal\Tests\Core\UnroutedUrlTest.

Class

UnroutedUrlTest
@coversDefaultClass \Drupal\Core\Url @group UrlTest

Namespace

Drupal\Tests\Core

Code

public function testCreateFromRequest() {
  $request = Request::create('/test-path');
  $this->router
    ->expects($this
    ->once())
    ->method('matchRequest')
    ->with($request)
    ->will($this
    ->throwException(new ResourceNotFoundException()));
  $this
    ->assertNull(Url::createFromRequest($request));
}