예제 #1
0
        public void EmailAddressTestMinOne()
        {
            //create an instance of a class
            clsCustomer TestCustomer = new clsCustomer();
            //declare testing variable
            Boolean OK;

            //Pass data to the class library for testing
            OK = TestCustomer.Validstring("aaaaaaaaaaaaaaaaaaaaaaaa");
            //evaluate return value
            Assert.IsTrue(OK);
        }