Beispiel #1
0
        [Test] public void Xml_InsertValid()
        {
            XmlPoker xml = new XmlPoker();

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

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

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

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

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

			xml.DoAdd ("hello");
		}