public function testItCanBeCreatedWithoutErrors()
 {
     $response = new Response(Response::STATUS_SUCCESS, 'content');
     $this->assertEquals(Response::STATUS_SUCCESS, $response->getResponseStatus());
     $this->assertEquals('content', $response->getResponseContent());
 }