예제 #1
0
파일: RouterTest.php 프로젝트: weew/router
 public function test_add_prefix()
 {
     $router = new Router();
     $this->assertTrue($router->addPrefix('foo') === $router);
     $this->assertEquals('foo', $router->getPrefix());
     $router->addPrefix('bar');
     $this->assertEquals('foo/bar', $router->getPrefix());
 }