public function PathValidatorTest::testIsValidWithNone in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/tests/Drupal/Tests/Core/Path/PathValidatorTest.php \Drupal\Tests\Core\Path\PathValidatorTest::testIsValidWithNone()
Tests the isValid() method for <none> (used for jumplinks).
@covers ::isValid
File
- core/
tests/ Drupal/ Tests/ Core/ Path/ PathValidatorTest.php, line 88 - Contains \Drupal\Tests\Core\Path\PathValidatorTest.
Class
- PathValidatorTest
- @coversDefaultClass \Drupal\Core\Path\PathValidator @group Routing
Namespace
Drupal\Tests\Core\PathCode
public function testIsValidWithNone() {
$this->accessAwareRouter
->expects($this
->never())
->method('match');
$this
->assertTrue($this->pathValidator
->isValid('<none>'));
}