예제 #1
0
파일: ResponseTest.php 프로젝트: travisj/zf
 public function testToStringShouldProxyToGetResponse()
 {
     $this->testResponseShouldAggregateMessageHeaders();
     $this->_response->finalize();
     $response = $this->_response->getResponse();
     $test = $this->_response->__toString();
     $this->assertSame($response, $test);
 }