コード例 #1
0
        public void ToHtml_AsterisksAndSpaces_ReturnsHr()
        {
            string input    = "* * *";
            string expected = "<hr />\n";

            horizontalLine.Set(input);
            string actual = horizontalLine.ToHtml();

            Assert.AreEqual(expected, actual);
        }