Exemplo n.º 1
0
        public void TELInvalidPhoneFlavorTest()
        {
            TEL tel = new TEL();

            tel.Value      = "519-456-3423";
            tel.NullFlavor = null;
            Assert.IsFalse(TEL.IsValidPhoneFlavor(tel));
            Assert.IsFalse(TEL.IsValidPersonFlavor(tel));
        }
Exemplo n.º 2
0
        public void TELInvalidEMailFlavorTest()
        {
            TEL tel = new TEL();

            tel.Value      = "no emails thank you";
            tel.NullFlavor = null;
            Assert.IsFalse(TEL.IsValidEMailFlavor(tel));
            Assert.IsFalse(TEL.IsValidPersonFlavor(tel));
        }
Exemplo n.º 3
0
        public void TELValidPhoneFlavorTest()
        {
            TEL tel = new TEL();

            tel.Value      = "tel://519-555-2345";
            tel.NullFlavor = null;
            Assert.IsTrue(TEL.IsValidPhoneFlavor(tel));
            Assert.IsTrue(TEL.IsValidPersonFlavor(tel));
        }
Exemplo n.º 4
0
        public void TELValidEMailFlavorTest()
        {
            TEL tel = new TEL();

            tel.Value      = "mailto:[email protected]";
            tel.NullFlavor = null;
            Assert.IsTrue(TEL.IsValidEMailFlavor(tel));
            Assert.IsTrue(TEL.IsValidPersonFlavor(tel));
        }