public async Task InternalErrorFromReportApi()
        {
            var reportConfig = new ReportConfig
            {
                Url     = "https://covid-19-statistics.p.rapidapi.com/reports",
                ApiKey  = "48c6ea5926msh35c92edffc8d551p130b01jsnb7aafad496a2",
                ApiHost = "covid-19-statistics.p.rapidapi.com",
            };

            var clientFactory = HttpClientBuilder.ReportClientFactory(ResponseBuilder.BuildInternalErrorResponse(), HttpStatusCode.InternalServerError);


            IReportRetriever reportRetriever = new ReportRetriever(reportConfig, clientFactory);

            await Assert.ThrowsAsync <HttpRequestException>(() => reportRetriever.RetrieveAllData());
        }