Exemplo n.º 1
0
 /**
  * @group ZF-1798
  */
 public function testCanSetParamSources()
 {
     $this->testGetAndPostBothInDefaultParamSources();
     $this->_request->setParamSources(array());
     $this->assertSame(array(), $this->_request->getParamSources());
     $this->_request->setParamSources(array('_GET'));
     $this->assertSame(array('_GET'), $this->_request->getParamSources());
 }