public void CreateWeatherForecastList()
        {
            IWeatherFactory         weatherFactory = new WeatherFactory(_kernel);
            List <IWeatherForecast> results        = weatherFactory.CreateWeatherForecastList("15217", true);

            Assert.IsTrue(results.Count > 0);
        }