| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #if NET_2_0
- using MonoTests.SystemWeb.Framework;
- using NUnit.Framework;
- using System.Web.UI.WebControls;
- using System.Reflection;
- using System.ComponentModel;
- using System.Threading;
- namespace MonoTests.System.Web.Compilation {
- public class ReadOnlyPropertyControl:TextBox {
- [Bindable (true)]
- public bool MyProp
- {
- get { return true; }
- }
- }
-
- [TestFixture]
- public class TemplateControlCompilerTest
- {
- [Test]
- [NUnit.Framework.Category ("NunitWeb")]
- public void ReadOnlyPropertyBindTest ()
- {
- WebTest.CopyResource (GetType (), "ReadOnlyPropertyBind.aspx", "ReadOnlyPropertyBind.aspx");
- WebTest.CopyResource (GetType (), "ReadOnlyPropertyControl.ascx", "ReadOnlyPropertyControl.ascx");
- new WebTest ("ReadOnlyPropertyBind.aspx").Run ();
- }
- [TestFixtureTearDown]
- public void TearDown ()
- {
- Thread.Sleep (100);
- WebTest.Unload ();
- }
- }
- }
- #endif
|