public function testReturnOfResponseDataAsRaw()
 {
     $response = new Response(200, $this->responseTestData);
     $responseRaw = $response->as_raw();
     $this->assertTrue(is_string($responseRaw));
 }