Open David-Rushton opened 2 years ago
MarkdownConsole.Write("...")
MarkdownConsole.Write("abc\n")
MarkdownConsole.WriteLine("...")
* Expected output that ends with one new line. Test cases should match behaviour of System.Console.Write("...").
System.Console.Write("...")
MarkdownConsole.Write("...")
should not append new lines to the end of the passed markdownMarkdownConsole.Write("abc\n")
should handle this case *MarkdownConsole.WriteLine("...")
that appends new line at the end* Expected output that ends with one new line. Test cases should match behaviour of
System.Console.Write("...")
.