public void CreateWeather()
        {
            IWeatherFactory weatherFactory = new WeatherFactory(_kernel);
            IWeather        alerts         = weatherFactory.CreateCurrentWeather("15217", true);

            Assert.IsNotNull(alerts);
        }