Ejemplo n.º 1
0
        public void BusinessCountry_ComparedToOthers_IsNotEquivilant()
        {
            //Arrange: A country with valid short and long name is created.
            BCountry country = new BCountry { Long_Name = "Canada", Short_Name = "CA" };

            //Act: The country is checked against itself for equivilance.
            bool equals = country.Equivilant(country);

            //Assert: The country is not equivilant to itself.
            Assert.AreEqual(false, equals);
        }