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/Managed.Windows.Forms/Test/System.Windows.Forms/RadioButtonTest.cs')
-rw-r--r--mcs/class/Managed.Windows.Forms/Test/System.Windows.Forms/RadioButtonTest.cs104
1 files changed, 104 insertions, 0 deletions
diff --git a/mcs/class/Managed.Windows.Forms/Test/System.Windows.Forms/RadioButtonTest.cs b/mcs/class/Managed.Windows.Forms/Test/System.Windows.Forms/RadioButtonTest.cs
new file mode 100644
index 00000000000..b16dcc70427
--- /dev/null
+++ b/mcs/class/Managed.Windows.Forms/Test/System.Windows.Forms/RadioButtonTest.cs
@@ -0,0 +1,104 @@
+//
+// RadioRadioButtonTest.cs: Test cases for RadioRadioButton.
+//
+// Author:
+// Ritvik Mayank (mritvik@novell.com)
+//
+// (C) 2005 Novell, Inc. (http://www.novell.com)
+//
+
+using System;
+using System.Windows.Forms;
+using System.Drawing;
+using NUnit.Framework;
+
+namespace MonoTests.System.Windows.Forms
+{
+ [TestFixture]
+ public class RadioButtonTest
+ {
+ [Test]
+ public void RadioButtonPropertyTest ()
+ {
+ RadioButton rButton1 = new RadioButton ();
+
+ // A
+ Assert.AreEqual (Appearance.Normal, rButton1.Appearance, "#A1");
+ Assert.AreEqual (true, rButton1.AutoCheck, "#A2");
+
+ // C
+ Assert.AreEqual (false, rButton1.Checked, "#C1");
+ Assert.AreEqual (ContentAlignment.MiddleLeft, rButton1.CheckAlign, "#C2");
+
+ // S
+ Assert.AreEqual (null, rButton1.Site, "#S1");
+
+ // T
+ rButton1.Text = "New RadioButton";
+ Assert.AreEqual ("New RadioButton", rButton1.Text, "#T1");
+ Assert.AreEqual (ContentAlignment.MiddleLeft, rButton1.TextAlign, "#T2");
+ }
+
+ [Test]
+ public void ToStringTest ()
+ {
+ RadioButton rButton1 = new RadioButton ();
+ Assert.AreEqual ("System.Windows.Forms.RadioButton, Checked: False" , rButton1.ToString (), "#9");
+ }
+ }
+
+ [TestFixture]
+ public class RadioButtonEventTestClass
+ {
+ static bool eventhandled = false;
+ public static void RadioButton_EventHandler (object sender, EventArgs e)
+ {
+ eventhandled = true;
+ }
+
+ [Test]
+ public void PanelClickTest ()
+ {
+ Form myForm = new Form ();
+ RadioButton rButton1 = new RadioButton ();
+ rButton1.Select ();
+ rButton1.Visible = true;
+ myForm.Controls.Add (rButton1);
+ eventhandled = false;
+ rButton1.Click += new EventHandler (RadioButton_EventHandler);
+ myForm.Show ();
+ rButton1.PerformClick ();
+ Assert.AreEqual (true, eventhandled, "#2");
+ }
+
+ [Test]
+ public void ApperanceChangedTest ()
+ {
+ Form myForm = new Form ();
+ RadioButton rButton1 = new RadioButton ();
+ rButton1.Select ();
+ rButton1.Visible = true;
+ myForm.Controls.Add (rButton1);
+ rButton1.Appearance = Appearance.Normal;
+ eventhandled = false;
+ rButton1.AppearanceChanged += new EventHandler (RadioButton_EventHandler);
+ rButton1.Appearance = Appearance.Button;
+ Assert.AreEqual (true, eventhandled, "#2");
+ }
+
+ [Test]
+ public void CheckedChangedTest ()
+ {
+ Form myForm = new Form ();
+ RadioButton rButton1 = new RadioButton ();
+ rButton1.Select ();
+ rButton1.Visible = true;
+ myForm.Controls.Add (rButton1);
+ rButton1.Checked = false;
+ eventhandled = false;
+ rButton1.CheckedChanged += new EventHandler (RadioButton_EventHandler);
+ rButton1.Checked = true;
+ Assert.AreEqual (true, eventhandled, "#3");
+ }
+ }
+}