Exemplo n.º 1
0
        public async Task integration_cleaned_history_get_by_zipcode()
        {
            var qo = new StandardWeatherQO {
                StartDate = DateTime.UtcNow.AddDays(-1),
                EndDate   = DateTime.UtcNow,
                Zipcode   = "50332"
            };

            var results = await _observationService.FindAsync(qo);

            results.ShouldNotBe(null);
            results.ShouldNotBe(string.Empty);
        }