public function UrlMatcherTest::testWithOutHostHostDoesNotMatch in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/routing/Tests/Matcher/UrlMatcherTest.php \Symfony\Component\Routing\Tests\Matcher\UrlMatcherTest::testWithOutHostHostDoesNotMatch()
@expectedException \Symfony\Component\Routing\Exception\ResourceNotFoundException
File
- vendor/
symfony/ routing/ Tests/ Matcher/ UrlMatcherTest.php, line 390
Class
Namespace
Symfony\Component\Routing\Tests\MatcherCode
public function testWithOutHostHostDoesNotMatch() {
$coll = new RouteCollection();
$coll
->add('foo', new Route('/foo/{foo}', array(), array(), array(), '{locale}.example.com'));
$matcher = new UrlMatcher($coll, new RequestContext('', 'GET', 'example.com'));
$matcher
->match('/foo/bar');
}