示例#1
0
        public void GetCountryByIdTest()
        {
            //act
            //Call the GetCountry method
            Country country = dao.GetCountry("USA");

            //assert
            //Make sure we get back the country we expect
            Assert.IsNotNull(country);
            Assert.AreEqual("United States", country.Name);
        }