示例#1
0
        public void GetCityListFromServiceTest()
        {
            WeatherUpdate.Models.LocationWeatherUpdate Test1 = new WeatherUpdate.Models.LocationWeatherUpdate();
            List <Models.Cities> Cities = Test1.GetCityList("Australia");

            Console.Write(Cities.Count.ToString());
            Assert.IsTrue(Cities.Count > 0, "City Retrieving Service is working in proper order");
        }
示例#2
0
        public void GetWeatherUpdateFromService()
        {
            WeatherUpdate.Models.LocationWeatherUpdate Test2 = new WeatherUpdate.Models.LocationWeatherUpdate();

            List <string> WeatherUpdateResult = Test2.GetWeatherUpdate("Australia", "Sydney");

            Assert.IsTrue(WeatherUpdateResult[0].ToString().Contains("Mocked"), "The Service is not Function");

            Assert.Fail();
        }