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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Pobst <monkey@jpobst.com>2007-01-24 00:59:29 +0300
committerJonathan Pobst <monkey@jpobst.com>2007-01-24 00:59:29 +0300
commitbfa8c5d260b43831b0de38b4e5e7c924e3c826f3 (patch)
tree80a0bd383f16708b02b3debf20036c1f4eda6a12
parent9dfddd1985215e310e0071c7a8fa09229604fe51 (diff)
2007-01-23 Jonathan Pobst <monkey@jpobst.com>
* GridTableStylesCollectionTest.cs: Mark TestAdd as NotWorking. There is a TODO in the DataGrid source referencing that Add should allow multiple columns with the same name, but currently doesn't. svn path=/trunk/mcs/; revision=71566
-rw-r--r--mcs/class/Managed.Windows.Forms/Test/System.Windows.Forms/ChangeLog6
-rw-r--r--mcs/class/Managed.Windows.Forms/Test/System.Windows.Forms/GridTableStylesCollectionTest.cs4
2 files changed, 10 insertions, 0 deletions
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 101e14cb3be..fde96055ffa 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,9 @@
+2007-01-23 Jonathan Pobst <monkey@jpobst.com>
+
+ * GridTableStylesCollectionTest.cs: Mark TestAdd as NotWorking.
+ There is a TODO in the DataGrid source referencing that Add should allow
+ multiple columns with the same name, but currently doesn't.
+
2007-01-23 Rolf Bjarne Kvinge <RKvinge@novell.com>
* ControlTest.cs: Added a tests for ControlCollection and
diff --git a/mcs/class/Managed.Windows.Forms/Test/System.Windows.Forms/GridTableStylesCollectionTest.cs b/mcs/class/Managed.Windows.Forms/Test/System.Windows.Forms/GridTableStylesCollectionTest.cs
index 0a334407d4b..c37a0ee48d1 100644
--- a/mcs/class/Managed.Windows.Forms/Test/System.Windows.Forms/GridTableStylesCollectionTest.cs
+++ b/mcs/class/Managed.Windows.Forms/Test/System.Windows.Forms/GridTableStylesCollectionTest.cs
@@ -74,7 +74,11 @@ namespace MonoTests.System.Windows.Forms
Assert.AreEqual (CollectionChangeAction.Refresh, Action, "A3");
}
+ // Fails due to:
+ // "The TableStyles collection already has a TableStyle with this mapping name"
+ // There is a TODO in DataGrid about allowing TableStyles to have the same mapping name.
[Test]
+ [NUnit.Framework.Category ("NotWorking")]
public void TestAdd ()
{
DataGrid grid = new DataGrid ();