public async void GetOpenWeatherForecast_ShouldReturnTheWeatherForecast()
        {
            var openWeatherMapService = new OpenWeatherMapService(new HttpClient());

            var location = new Position {
                Latitude = 41.890969, Longitude = -87.676392
            };

            var resultTask = openWeatherMapService.Get7DayForecastAsync(location);

            resultTask.Wait();

            Assert.IsNotNull(resultTask.Result);
        }