Example #1
0
        public void DetailsView_CreateChildControls_Clear()
        {
            MyCompositeDataBoundControl c = new MyCompositeDataBoundControl();

            c.Controls.Add(new WebControl(HtmlTextWriterTag.A));
            Assert.AreEqual(1, c.Controls.Count);
            c.DoCreateChildControls();
            Assert.AreEqual(0, c.Controls.Count);
        }
		public void DetailsView_CreateChildControls_Clear () {
			MyCompositeDataBoundControl c = new MyCompositeDataBoundControl ();
			c.Controls.Add (new WebControl (HtmlTextWriterTag.A));
			Assert.AreEqual (1, c.Controls.Count);
			c.DoCreateChildControls ();
			Assert.AreEqual (0, c.Controls.Count);
		}