public void TestCheckAbsoluteUriAbsolute() { string absoluteUri = "http://www.google.com.au"; bool isAbsolute = DataFetcher.CheckUrlAbsolute(absoluteUri); Assert.IsTrue(isAbsolute, "check failed to identify absolute uri"); }
public void TestCheckAbsoluteUriRelative() { string relativeUri = "/images/relative.gif"; bool isAbsolute = DataFetcher.CheckUrlAbsolute(relativeUri); Assert.IsFalse(isAbsolute, "check failed to identify relative uri"); }