getResponse() public method

Returns the whole response.
public getResponse ( ) : String
return String
 public function testRetrieveTheWholeResponse()
 {
     $response = new CurlClientResponse("A\r\n\r\nB");
     $this->assertEquals("A\r\n\r\nB", $response->getResponse());
 }