Example #1
0
        public void MultiView_AddParsedSubObjectExeption2()
        {
            PokerMultiView pmv = new PokerMultiView();
            LiteralControl l1  = new LiteralControl("literal");

            pmv.DoAddParsedSubObject(l1);
        }
Example #2
0
        public void MultiView_AddParsedSubObject()
        {
            PokerMultiView pmv = new PokerMultiView();
            View           v1  = new View();

            pmv.DoAddParsedSubObject(v1);
            Assert.AreEqual(1, pmv.Controls.Count, "AddParsedSubObjectSuccssed");
        }
Example #3
0
		public void MultiView_AddParsedSubObjectExeption2 ()
		{
			PokerMultiView pmv = new PokerMultiView ();
			LiteralControl l1 = new LiteralControl ("literal");
			pmv.DoAddParsedSubObject (l1);
		}
Example #4
0
		public void MultiView_AddParsedSubObject ()
		{
			PokerMultiView pmv = new PokerMultiView ();
			View v1 = new View ();
			pmv.DoAddParsedSubObject (v1);
			Assert.AreEqual (1, pmv.Controls.Count, "AddParsedSubObjectSuccssed");
		}