Ejemplo n.º 1
0
        public void BusinessCountry_WithInvalidMembers_IsNotCreateValid()
        {
            //Arrange: A country with an invalid short and long name is created.
            BCountry country = new BCountry {
                Long_Name = "Canadaaaaaaaaaaaaa",
                Short_Name = "CAA"
            };

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

            //Assert: The country is not valid for creation.
            Assert.AreEqual(false, valid);
        }