示例#1
0
 public function testGetAndSetResponse()
 {
     $this->assertInstanceOf('Zend_Controller_Response_Abstract', $this->_output->getResponse());
     $response = $this->getMock('Zend_Controller_Response_Abstract');
     $this->_output->setResponse($response);
     $this->assertSame($response, $this->_output->getResponse());
 }