Example #1
0
 public function testNoRquestContextCollection()
 {
     $this->setExpectedException('\\Huruk\\Exception\\PageNotFoundException');
     $new_router = new Router();
     $route_collection = new RouteCollection();
     $route_collection->add('foo', new Route('/foo', array('_controller' => 'FooController')));
     $new_router->setRouteCollection($route_collection);
     $new_router->matchUrl('/route');
 }