Beispiel #1
0
        public void WeatherForcastController_Success()
        {
            //arrange

            //act
            IEnumerable <WeatherForecast> result = _controller.List();

            //assert
            Assert.IsNotNull(result);
            Assert.IsTrue(result.Count() > 3);
        }