Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System.Web/Test/System.Web.UI.HtmlControls/HtmlInputRadioButtonTest.cs')
-rw-r--r--mcs/class/System.Web/Test/System.Web.UI.HtmlControls/HtmlInputRadioButtonTest.cs4
1 files changed, 0 insertions, 4 deletions
diff --git a/mcs/class/System.Web/Test/System.Web.UI.HtmlControls/HtmlInputRadioButtonTest.cs b/mcs/class/System.Web/Test/System.Web.UI.HtmlControls/HtmlInputRadioButtonTest.cs
index 11d18ce6ea9..67b8c100b73 100644
--- a/mcs/class/System.Web/Test/System.Web.UI.HtmlControls/HtmlInputRadioButtonTest.cs
+++ b/mcs/class/System.Web/Test/System.Web.UI.HtmlControls/HtmlInputRadioButtonTest.cs
@@ -45,7 +45,6 @@ namespace MonoTests.System.Web.UI.HtmlControls {
base.RenderAttributes (writer);
return writer.InnerWriter.ToString ();
}
-#if NET_2_0
public bool LoadPost (string key, NameValueCollection nvc)
{
return base.LoadPostData (key, nvc);
@@ -55,7 +54,6 @@ namespace MonoTests.System.Web.UI.HtmlControls {
{
base.RaisePostDataChangedEvent ();
}
-#endif
}
[TestFixture]
@@ -241,7 +239,6 @@ namespace MonoTests.System.Web.UI.HtmlControls {
Assert.IsTrue (attrs.IndexOf ("value=\"hola<&\"") >= 0);
}
-#if NET_2_0
[Test]
public void RaisePostBackEvent ()
{
@@ -293,6 +290,5 @@ namespace MonoTests.System.Web.UI.HtmlControls {
Assert.IsFalse (rb.LoadPost ("id1", nvc), "LoadPostData");
Assert.AreEqual ("id1", rb.Value, "Value");
}
-#endif
}
}