Esempio n. 1
0
 public void FormatGreateAndLesser_should_replace_more_sign_to_amp_gt()
 {
     string text = "\\>";
     var htmlFormatter = new HtmlFormatter();
     string result = htmlFormatter.FormatMoreLess(text);
     Assert.AreEqual(">", result);
 }