// // 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"); } } }