@expectedException \Symfony\Component\Routing\Exception\ResourceNotFoundException
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');
}