예제 #1
0
        public void AddParsedSubObject_DataBoundLiteralControl()
        {
            TestHtmlTextArea ta = new TestHtmlTextArea();

            ta.PublicAddParsedSubObject(new DataBoundLiteralControl(1, 1));
        }
예제 #2
0
        public void AddParsedSubObject_WrongType()
        {
            TestHtmlTextArea ta = new TestHtmlTextArea();

            ta.PublicAddParsedSubObject(this);
        }
예제 #3
0
        public void AddParsedSubObject_LiteralControl()
        {
            TestHtmlTextArea ta = new TestHtmlTextArea();

            ta.PublicAddParsedSubObject(new LiteralControl());
        }
예제 #4
0
        [NUnit.Framework.Category("NotWorking")]          // Mono throw HttpException
        public void AddParsedSubObject_Null()
        {
            TestHtmlTextArea ta = new TestHtmlTextArea();

            ta.PublicAddParsedSubObject(null);
        }
예제 #5
0
		public void AddParsedSubObject_DataBoundLiteralControl ()
		{
			TestHtmlTextArea ta = new TestHtmlTextArea ();
			ta.PublicAddParsedSubObject (new DataBoundLiteralControl (1,1));
		}
예제 #6
0
		public void AddParsedSubObject_LiteralControl ()
		{
			TestHtmlTextArea ta = new TestHtmlTextArea ();
			ta.PublicAddParsedSubObject (new LiteralControl ());
		}
예제 #7
0
		public void AddParsedSubObject_WrongType ()
		{
			TestHtmlTextArea ta = new TestHtmlTextArea ();
			ta.PublicAddParsedSubObject (this);
		}
예제 #8
0
		[NUnit.Framework.Category ("NotWorking")] // Mono throw HttpException
		public void AddParsedSubObject_Null ()
		{
			TestHtmlTextArea ta = new TestHtmlTextArea ();
			ta.PublicAddParsedSubObject (null);
		}