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

GroupBoxTest.cs « System.Windows.Forms « Test « Managed.Windows.Forms « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9d9ed081e098c02cec5e9ded31389085e5b8da3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//
// GroupBoxTest.cs: Test cases for GroupBox.
//
// Author:
//   Ritvik Mayank (mritvik@novell.com)
//
// (C) 2005 Novell, Inc. (http://www.novell.com)
//

using System;
using System.Windows.Forms;
using System.Drawing;
using System.Reflection;
using NUnit.Framework;

namespace MonoTests.System.Windows.Forms
{
	[TestFixture]
	public class GroupBoxTest
	{
		[Test]
		public void GroupBoxPropertyTest ()
		{
			Form myform = new Form ();
			GroupBox mygrpbox = new GroupBox ();
			RadioButton myradiobutton1 = new RadioButton ();
			RadioButton myradiobutton2 = new RadioButton ();
			mygrpbox.Controls.Add (myradiobutton1);
			mygrpbox.Controls.Add (myradiobutton2);
			myform.Show ();
			Assert.AreEqual (FlatStyle.Standard, mygrpbox.FlatStyle, "#1");
			mygrpbox.FlatStyle = FlatStyle.Popup;
			Assert.AreEqual (FlatStyle.Popup, mygrpbox.FlatStyle, "#2");
			mygrpbox.FlatStyle = FlatStyle.Flat;
			Assert.AreEqual (FlatStyle.Flat, mygrpbox.FlatStyle, "#3");
			mygrpbox.FlatStyle = FlatStyle.System;
			Assert.AreEqual (FlatStyle.System, mygrpbox.FlatStyle, "#4");
		}
	}
}