Ejemplo n.º 1
0
        public void AppendCommentEmptyText()
        {
            XmlBuilder xmlBuilder = new XmlBuilder();

            xmlBuilder.AppendComment(null);

            Assert.AreEqual("<!--  -->", xmlBuilder.ToString());
        }
Ejemplo n.º 2
0
        public void AppendComment()
        {
            XmlBuilder xmlBuilder = new XmlBuilder();

            xmlBuilder.AppendComment("Comment");

            Assert.AreEqual("<!-- Comment -->", xmlBuilder.ToString());
        }