Esempio n. 1
0
        public void ValidateRepeatCountryNotRepeated()
        {
            Repository.GetCountries().Clear();
            CountryHandler Country = new CountryHandler("Brasil", 1);

            Repository.AddCountry(Country);
            Assert.AreEqual(false, Repository.IsRepeatedCountry(""));
        }