Ejemplo n.º 1
0
 public function testEmptyURIMatchesDefaults()
 {
     $router = new Router($this->collection);
     $router->handle('');
     $this->assertEquals($this->collection->getDefaultController(), $router->controllerName());
     $this->assertEquals($this->collection->getDefaultMethod(), $router->methodName());
 }