Ejemplo n.º 1
0
        public void TestCheckAbsoluteUriAbsolute()
        {
            string absoluteUri = "http://www.google.com.au";
            bool   isAbsolute  = DataFetcher.CheckUrlAbsolute(absoluteUri);

            Assert.IsTrue(isAbsolute, "check failed to identify absolute uri");
        }
Ejemplo n.º 2
0
        public void TestCheckAbsoluteUriRelative()
        {
            string relativeUri = "/images/relative.gif";
            bool   isAbsolute  = DataFetcher.CheckUrlAbsolute(relativeUri);

            Assert.IsFalse(isAbsolute, "check failed to identify relative uri");
        }