2006-12-18 Rolf Bjarne Kvinge <RKvinge@novell.com>
authorRolf Bjarne Kvinge <RKvinge@novell.com>
Mon, 18 Dec 2006 20:52:38 +0000 (20:52 -0000)
committerRolf Bjarne Kvinge <RKvinge@novell.com>
Mon, 18 Dec 2006 20:52:38 +0000 (20:52 -0000)
* MonthCalendarTest.cs: Added test for DefaultMargin.

svn path=/trunk/mcs/; revision=69683

mcs/class/Managed.Windows.Forms/Test/System.Windows.Forms/ChangeLog
mcs/class/Managed.Windows.Forms/Test/System.Windows.Forms/MonthCalendarTest.cs

index 8e5f88d4bcdba41f00fd86cdc209d86e17f1c522..077f0c01f3a819103cff18962569ee73b3a7d75a 100644 (file)
@@ -1,3 +1,7 @@
+2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
+
+       * MonthCalendarTest.cs: Added test for DefaultMargin.
+
 2006-12-18  Daniel Nauck  <dna@mono-project.de>
 
        * DataGridViewAdvancedBorderStyleTest.cs,
index b157dcc1debf72a177acf10d95a5bd385278eb48..039a0f03dc6f56334426430017aa96a817db1158 100644 (file)
@@ -15,6 +15,22 @@ using NUnit.Framework;
 
 namespace MonoTests.System.Windows.Forms
 {
+       [TestFixture]
+       public class MonthCalendarPropertiesTest : MonthCalendar
+       {
+               [Test]
+               public void Tester ()
+               {
+               }
+#if NET_2_0
+               [Test]
+               public void DefaultMarginTest ()
+               {
+                       Assert.AreEqual (DefaultMargin.All, 9, "#01");
+               }
+#endif
+       }
+
        [TestFixture]
        [Ignore ("This test has to be completly reviewed")]     
        public class MonthCalendarTest