Example #1
0
 public function testRouteUri()
 {
     $r = new Router();
     $r->add(['/*', '/c/a']);
     $r->route('/testing/the/uri/method');
     $this->assertEquals('/testing/the/uri/method', $r->uri());
 }