Example #1
0
        public void deHTMLTextTest()
        {
            string htmlString    = @">  <  '  \/  "  &";
            string DesiredString = ">  <  '  /  \"  &";

            Assert.AreEqual(DesiredString, Crate.DeHtmlText(htmlString));
        }