예제 #1
0
        public void Print_WithSetInputTestValue_ShouldAddTestValue()
        {
            MarkdownChapterStringContent content = new MarkdownChapterStringContent {
                Content = "test"
            };

            Assert.AreEqual("test", content.Content);
        }
예제 #2
0
        public void Print_WithInputTestValue_ShouldPrintExactlyLikeInput()
        {
            MarkdownChapterStringContent content = new MarkdownChapterStringContent {
                Content = "test"
            };

            Assert.AreEqual("test", content.Print());
        }