Ejemplo n.º 1
0
 public void Xml_CData_AddsCDataNode()
 {
     var xml = new Xml();
     xml.Tag("tag", Xml.Fragment(() =>
     {
         xml.CData("content");
         xml.Tag("hello", "world");
     }));
     Assert.Equal("<tag><![CDATA[content]]><hello>world</hello></tag>", xml);
 }
Ejemplo n.º 2
0
        public void Xml_CData_AddsCDataNode()
        {
            var xml = new Xml();

            xml.Tag("tag", Xml.Fragment(() =>
            {
                xml.CData("content");
                xml.Tag("hello", "world");
            }));
            Assert.Equal("<tag><![CDATA[content]]><hello>world</hello></tag>", xml);
        }
Ejemplo n.º 3
0
 public void Xml_CData_NullData_ThrowsNullException()
 {
     var xml = new Xml();
     Assert.Throws<ArgumentNullException>(() => xml.CData(null));
 }
Ejemplo n.º 4
0
        public void Xml_CData_NullData_ThrowsNullException()
        {
            var xml = new Xml();

            Assert.Throws <ArgumentNullException>(() => xml.CData(null));
        }