public async Task Return_text_based_on_weatherForeCast_with_defined_location()
        {
            var httpClient     = new HttpClient();
            var weatherService = new WeatherService(_key, httpClient);
            IWeatherForecast weatherForecast = new WeatherForecast(weatherService, httpClient, new WeatherForecastMapper());
            string           text            = await weatherForecast.GetForecastAsync("Kolding");

            _testOutputHelper.WriteLine($"text: {text}");
            Assert.Contains("Kolding", text);
        }