public function testComposeApiProblemIsAccessible()
 {
     $apiProblem = new ApiProblem(400, 'Random error');
     $response = new ApiProblemResponse($apiProblem);
     $this->assertSame($apiProblem, $response->getApiProblem());
 }