BloomTests.Book.HtmlDomTests.BaseForRelativePaths_NoHead_NoLongerThrows C# (CSharp) Method

BaseForRelativePaths_NoHead_NoLongerThrows() private method

private BaseForRelativePaths_NoHead_NoLongerThrows ( ) : void
return void
        public void BaseForRelativePaths_NoHead_NoLongerThrows()
        {
            var dom = new HtmlDom(
                          @"<html></html>");
            dom.BaseForRelativePaths = "theBase";
            Assert.AreEqual("theBase", dom.BaseForRelativePaths);
        }
HtmlDomTests