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