Beispiel #1
0
        public void GetListTest()
        {
            var list = CountryCodesResolver.GetList();

            Assert.Greater(list.Count, 0);
        }
Beispiel #2
0
        public void GetByAlpha3CodeTest(string code, string description)
        {
            var cc = CountryCodesResolver.GetByAlpha3Code(code);

            Assert.AreEqual(description, cc.Name);
        }