public void get_curreny_from_should_fail(string country)
 {
     Assert.Throws <Exception>(() => Geography.GetCurrency(country));
 }
        public void get_curreny_from_country(string country, CurrencySymbol expectedCurrency)
        {
            var currency = Geography.GetCurrency(country);

            Assert.AreEqual(expectedCurrency, currency);
        }