Exemplo n.º 1
0
        [Test] public void Xml_InsertValid()
        {
            XmlPoker xml = new XmlPoker();

            xml.DoAdd(new LiteralControl("<test></test>"));
        }
Exemplo n.º 2
0
        [Test] public void Xml_InsertInvalid2()
        {
            XmlPoker xml = new XmlPoker();

            xml.DoAdd(null);
        }
Exemplo n.º 3
0
        [Test] public void Xml_InsertInvalid()
        {
            XmlPoker xml = new XmlPoker();

            xml.DoAdd("hello");
        }
Exemplo n.º 4
0
		[Test] public void Xml_InsertValid ()
		{
			XmlPoker xml = new XmlPoker ();

			xml.DoAdd (new LiteralControl ("<test></test>"));
		}
Exemplo n.º 5
0
		[Test] public void Xml_InsertInvalid2 ()
		{
			XmlPoker xml = new XmlPoker ();

			xml.DoAdd (null);
		}
Exemplo n.º 6
0
		[Test] public void Xml_InsertInvalid ()
		{
			XmlPoker xml = new XmlPoker ();

			xml.DoAdd ("hello");
		}