From b8fbc6b167828d3a5ec7f2debc6839cf6f343305 Mon Sep 17 00:00:00 2001 From: Chris Toshok Date: Tue, 16 Jan 2007 18:41:40 +0000 Subject: [PATCH] 2007-01-16 Chris Toshok * UpDownTest.cs: add UpDownActiveControlTest. svn path=/trunk/mcs/; revision=71162 --- .../Managed.Windows.Forms/Test/System.Windows.Forms/ChangeLog | 4 ++++ .../Managed.Windows.Forms/Test/System.Windows.Forms/UpDownTest.cs | 7 +++++++ 2 files changed, 11 insertions(+) diff --git a/mcs/class/Managed.Windows.Forms/Test/System.Windows.Forms/ChangeLog b/mcs/class/Managed.Windows.Forms/Test/System.Windows.Forms/ChangeLog index 3f311dd3673..542cc9169cf 100644 --- a/mcs/class/Managed.Windows.Forms/Test/System.Windows.Forms/ChangeLog +++ b/mcs/class/Managed.Windows.Forms/Test/System.Windows.Forms/ChangeLog @@ -1,3 +1,7 @@ +2007-01-16 Chris Toshok + + * UpDownTest.cs: add UpDownActiveControlTest. + 2007-01-16 Jonathan Pobst * ControlPropertyEventsTest.cs: Enable PropertyMinimumSize test. diff --git a/mcs/class/Managed.Windows.Forms/Test/System.Windows.Forms/UpDownTest.cs b/mcs/class/Managed.Windows.Forms/Test/System.Windows.Forms/UpDownTest.cs index 317775857d6..6fbe509d5be 100644 --- a/mcs/class/Managed.Windows.Forms/Test/System.Windows.Forms/UpDownTest.cs +++ b/mcs/class/Managed.Windows.Forms/Test/System.Windows.Forms/UpDownTest.cs @@ -33,6 +33,13 @@ namespace MonoTests.System.Windows.Forms } [Test] + public void UpDownActiveControlTest () + { + NumericUpDown n1 = new NumericUpDown (); + Assert.IsNull (n1.ActiveControl, "1"); + } + + [Test] public void UpDownBasePropTest () { NumericUpDown n1 = new NumericUpDown (); -- 2.11.4.GIT