public function UrlMatcherTest::testMatchSpecialRouteName in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/routing/Tests/Matcher/UrlMatcherTest.php \Symfony\Component\Routing\Tests\Matcher\UrlMatcherTest::testMatchSpecialRouteName()
File
- vendor/
symfony/ routing/ Tests/ Matcher/ UrlMatcherTest.php, line 155
Class
Namespace
Symfony\Component\Routing\Tests\MatcherCode
public function testMatchSpecialRouteName() {
$collection = new RouteCollection();
$collection
->add('$péß^a|', new Route('/bar'));
$matcher = new UrlMatcher($collection, new RequestContext());
$this
->assertEquals(array(
'_route' => '$péß^a|',
), $matcher
->match('/bar'));
}