Example #1
0
 public function testGetAssembledParams()
 {
     $route = new Query();
     $uri = new Http();
     $route->assemble(array('foo' => 'bar'), array('uri' => $uri));
     $this->assertEquals(array('foo'), $route->getAssembledParams());
 }