Esempio n. 1
0
        public void CanBeParsedFromLocalFiles()
        {
            const string path = @".\Files\arstechnica.html";

            var fileInfo = new System.IO.FileInfo(path);

            Assert.IsTrue(fileInfo.Exists);

            var location = new Uri(fileInfo.FullName);

            var xhtml = XhtmlElement.Parse(location);

            MakeDocumentAssertions(xhtml);
        }