Exemplo n.º 1
0
 public function test_getCookieParams()
 {
     $parser = new ServerRequest();
     $testArray = array('a' => 'test1', 'b' => 'test2', 'c' => 'test3');
     $parser->withCookieParams($testArray);
     $this->assertEquals($testArray, $parser->getCookieParams());
 }