Example #1
0
 public function testGettingWildcards()
 {
     $wildcards = ['foo' => 'hello', 'bar' => 'world'];
     $route = new Route();
     $route->setWildcards($wildcards);
     $this->assertEquals($route->getWildcards(), $wildcards);
 }