Esempio n. 1
0
        public void TELInvalidURLFlavorTest()
        {
            TEL tel = new TEL();

            tel.Value      = "www.xbox.com";
            tel.NullFlavor = null;
            Assert.IsFalse(TEL.IsValidUrlFlavor(tel));
        }
Esempio n. 2
0
        public void TELValidURLFlavorTest()
        {
            TEL tel = new TEL();

            tel.Value      = "http://www.nintendo.com";
            tel.NullFlavor = null;
            Assert.IsTrue(TEL.IsValidUrlFlavor(tel));
        }