コード例 #1
0
ファイル: HttpTest.php プロジェクト: jorgenils/zend-framework
 public function testSetGetParams()
 {
     $params = array('foo' => 'bar', 'boo' => 'bah', 'fee' => 'fi');
     $this->_request->setParams($params);
     $this->assertSame($params, $this->_request->getParams());
 }