示例#1
0
        public async Task ShouldReturnWeatherDataFor(string city)
        {
            var result = await _weatherService.Get5DayForcast(city);

            Assert.IsTrue(!string.IsNullOrWhiteSpace(result));
        }