Example #1
0
 public function testBuildUrl()
 {
     $route = new HttpRoute(['url' => '/:arg1/:arg2!']);
     $result = $route->buildUrl(['arg1' => 'hello', 'arg2' => 'world']);
     $this->assertEquals($result, '/hello/world!');
 }