public void GetCityWithHighestStandardDeviation_is_Leefield()
        {
            var cityWithHighestStandardDeviation = _statistics.GetCityWithHighestStandardDeviation();

            Debug.WriteLine($"{cityWithHighestStandardDeviation} is the city with the highest standard deviation.");

            Assert.AreEqual("Leefield", cityWithHighestStandardDeviation);
        }