using Xunit; public class MarkdownTest { [Fact] public void Parses_normal_text_as_a_paragraph() { var input = "This will be a paragraph"; var expected = "
This will be a paragraph
"; Assert.Equal(expected, Markdown.Parse(input)); } [Fact(Skip = "Remove to run test")] public void Parsing_italics() { var input = "_This will be italic_"; var expected = "This will be italic
"; Assert.Equal(expected, Markdown.Parse(input)); } [Fact(Skip = "Remove to run test")] public void Parsing_bold_text() { var input = "__This will be bold__"; var expected = "This will be bold
"; Assert.Equal(expected, Markdown.Parse(input)); } [Fact(Skip = "Remove to run test")] public void Mixed_normal_italics_and_bold_text() { var input = "This will _be_ __mixed__"; var expected = "This will be mixed
"; Assert.Equal(expected, Markdown.Parse(input)); } [Fact(Skip = "Remove to run test")] public void With_h1_header_level() { var input = "# This will be an h1"; var expected = "