コード例 #1
0
ファイル: ResponseTest.php プロジェクト: fproject/phpamf
 public function testToStringShouldProxyToGetResponse()
 {
     $this->testResponseShouldAggregateMessageHeaders();
     $this->_response->finalize();
     $response = $this->_response->getResponse();
     $test = $this->_response->__toString();
     $this->assertSame($response, $test);
 }