Unit test for bug #821.
[mono.git] / mcs / class / Managed.Windows.Forms / Test / System.Windows.Forms / DataGridViewElementTest.cs
index 36d9306dda2dea6e8a2c880341b6ff2944425480..686f48702831c8061e467ef5f7bd938a18d69ee6 100644 (file)
@@ -36,22 +36,14 @@ using System.Collections;
 namespace MonoTests.System.Windows.Forms {
 
        [TestFixture]
-       public class DataGridViewElementTest : Assertion {
-               
-               [SetUp]
-               public void GetReady() {}
-
-               [TearDown]
-               public void Clean() {}
+       public class DataGridViewElementTest : TestHelper {
 
                [Test]
                public void TestDefaultValues () {
                        DataGridViewElement element = new DataGridViewElement();
-                       AssertEquals("DataGridView property", null, element.DataGridView);
+                       Assert.AreEqual (null, element.DataGridView, "#A1");
                }
-
        }
-
 }
 
 #endif