Exemplo n.º 1
0
 public function testQueryString()
 {
     $routes = new Routes();
     $qs = htmlspecialchars(urldecode("?group=prod%2Cinfra%2Ctest&op%3Aset=x%3Dy"));
     $routes->getQueryString($qs);
     $this->assertEquals("prod,infra,test", $routes->params["group"]);
 }