コード例 #1
0
ファイル: GetterTest.php プロジェクト: joshuacrocker/router
 function testGetUrl()
 {
     $router = new \AuraTempleFramework\Router('hello/world');
     $router->registerRoute('hello', 'HelloRoute');
     $this->assertEquals('hello/world', $router->getUrl());
 }