コード例 #1
0
        public void PhoneNumberTestInvalidDataType()
        {
            //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.ValidIntInvalidData("Evington");
            //evaluate return value
            Assert.IsTrue(OK);
        }