Ejemplo n.º 1
0
        public void BusinessCountry_IsDeleteValid()
        {
            //Arrange: A default country is created
            BCountry country = new BCountry ();

            //Act: The country is checked to be valid for deletion.
            bool valid = country.DeleteValid();

            //Assert: The country is valid for deletion.
            Assert.AreEqual(true, valid);
        }