コード例 #1
0
ファイル: HttpRouteTest.php プロジェクト: rezon/sugi
 public function testSetPath()
 {
     $route = new Route("/");
     $route->setPath("/home");
     $this->assertEquals("/home", $route->getPath());
 }