Exemplo n.º 1
0
        public void DateOfBirthValidOK()
        {
            clsCustomer ACustomer = new clsCustomer();
            string      Error     = "";
            DateTime    TestData  = tstDateOfBirth;

            Error = ACustomer.ValidDOB(tstDateOfBirth);
            Assert.AreEqual(Error, "");
        }