Example #1
0
 public function test_requestController_can_dispatch_route_with_multiple_wildcards()
 {
     $this->SERVER_SUPER_GLOBAL_MOCK(["REQUEST_METHOD" => 'GET', "REQUEST_URI" => '/photos/ee343/comment/11235813213455']);
     $router = new Router();
     $router->get('/photos/:id/comment/:id', 'Router\\RouteMock@index');
     $this->assertNull($router->run());
 }