public function testReturnOfEmptyResponseDataAsArray()
 {
     $response = new Response(200, '');
     $responseArray = $response->as_array();
     $this->assertTrue(is_array($responseArray));
 }