コード例 #1
0
        public void CorrectCompareDensityCountries()
        {
            Country country1       = countriesTest[0];
            Country country2       = countriesTest[0];
            string  expectedResult = "Chile Density: 24.060114";
            string  result         = _statistics.CompareCountries(country1, country2);

            Assert.AreEqual(expectedResult, result);
        }