public void GetBiggestCity_is_Alma()
        {
            var biggestCity = _statistics.GetBiggestCity();

            Debug.WriteLine($"{biggestCity} is the biggest city.");
            Assert.AreEqual("Alma", biggestCity);
        }