public void GetMaxTempLatestDay_TDD()
        {
            var weatherObservation = new WeatherObservation();
            var tempObj = weatherObservation.GetMaxTempLatestDay(71190);

            Assert.IsNotNull(tempObj);
        }