You are here

public function PathValidatorTest::testIsValidWithInvalidExternalUrl in Zircon Profile 8

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

Tests the isValid() method with an invalid external URL.

File

core/tests/Drupal/Tests/Core/Path/PathValidatorTest.php, line 110
Contains \Drupal\Tests\Core\Path\PathValidatorTest.

Class

PathValidatorTest
@coversDefaultClass \Drupal\Core\Path\PathValidator @group Routing

Namespace

Drupal\Tests\Core\Path

Code

public function testIsValidWithInvalidExternalUrl() {
  $this->accessAwareRouter
    ->expects($this
    ->never())
    ->method('match');
  $this
    ->assertFalse($this->pathValidator
    ->isValid('http://'));
}