예제 #1
0
        public void TestURLFail()
        {
            RetrieveStoryModel rsm = new RetrieveStoryModel();

            rsm.Url = "http:\\host/path/file";

            Assert.IsFalse(rsm.testURL());
        }
예제 #2
0
        public void TestUrlPass()
        {
            RetrieveStoryModel rsm = new RetrieveStoryModel();

            rsm.Url = "https://www.google.co.uk/";

            Assert.IsTrue(rsm.testURL());
        }