Extends
lithium\test\UnitSource
public function testQueryStringDefault() {
$expected = "?param=value¶m1=value1";
$result = $this->request->queryString(array('param' => 'value', 'param1' => 'value1'));
$this->assertEqual($expected, $result);
}