public void TELInvalidURLFlavorTest() { TEL tel = new TEL(); tel.Value = "www.xbox.com"; tel.NullFlavor = null; Assert.IsFalse(TEL.IsValidUrlFlavor(tel)); }
public void TELValidURLFlavorTest() { TEL tel = new TEL(); tel.Value = "http://www.nintendo.com"; tel.NullFlavor = null; Assert.IsTrue(TEL.IsValidUrlFlavor(tel)); }