Multi-culture implementation ValueSerializers, Parse and ToString for types from...
[mono.git] / mcs / class / WindowsBase / Test / System.Windows / RectTest.cs
index 6fddadb2f9167de43dcc81e91ce1875d9548c3f6..c1d0dae4d7b56044ff08b2b2cffaaa5edcea08fb 100644 (file)
@@ -327,7 +327,6 @@ namespace MonoTests.System.Windows {
                }
                
                [Test]
-               [Category ("NotWorking")]
                public void ToString_FormatException ()
                {
                        // This test does not currently work because
@@ -343,7 +342,6 @@ namespace MonoTests.System.Windows {
                }
 
                [Test]
-               [Category ("NotWorking")]
                public void Parse ()
                {
                        Rect r = Rect.Parse ("1 , 2, 3, 4");
@@ -351,7 +349,6 @@ namespace MonoTests.System.Windows {
                }
 
                [Test]
-               [Category ("NotWorking")]
                public void Parse2 ()
                {
                        Rect r = Rect.Parse ("1 2 3 4");
@@ -359,7 +356,6 @@ namespace MonoTests.System.Windows {
                }
 
                [Test]
-               [Category ("NotWorking")]
                public void Parse3 ()
                {
                        Rect r = Rect.Parse ("  1 2 3 4  ");
@@ -367,14 +363,12 @@ namespace MonoTests.System.Windows {
                }
 
                [Test]
-               [Category ("NotWorking")]
                public void ParseWithBothSeparators ()
                {
                        Rect.Parse ("1.0, 3 2.0, 5.0");
                }
 
                [Test]
-               [Category ("NotWorking")]
                [ExpectedException (typeof (ArgumentException))]
                public void ParseNegative ()
                {
@@ -382,7 +376,6 @@ namespace MonoTests.System.Windows {
                }
 
                [Test]
-               [Category ("NotWorking")]
                [ExpectedException (typeof (InvalidOperationException))] // "Premature string termination encountered."
                public void Parse3Doubles ()
                {
@@ -390,7 +383,6 @@ namespace MonoTests.System.Windows {
                }
 
                [Test]
-               [Category ("NotWorking")]
                [ExpectedException (typeof (FormatException))]
                public void ParseInvalidString1 ()
                {
@@ -398,7 +390,6 @@ namespace MonoTests.System.Windows {
                }
 
                [Test]
-               [Category ("NotWorking")]
                [ExpectedException (typeof (InvalidOperationException))]
                public void ParseInvalidString3 ()
                {
@@ -406,7 +397,6 @@ namespace MonoTests.System.Windows {
                }
 
                [Test]
-               [Category ("NotWorking")]
                [ExpectedException (typeof (FormatException))]
                public void ParseInvalidString4 ()
                {
@@ -414,7 +404,6 @@ namespace MonoTests.System.Windows {
                }
 
                [Test]
-               [Category ("NotWorking")]
                [ExpectedException (typeof (InvalidOperationException))]
                public void ParseInvalidString5 ()
                {
@@ -422,14 +411,12 @@ namespace MonoTests.System.Windows {
                }
 
                [Test]
-               [Category ("NotWorking")]
                public void ParseInvalidString6 ()
                {
                        Rect.Parse ("\n1.0, 2.0, 5.0, 2");
                }
 
                [Test]
-               [Category ("NotWorking")]
                [ExpectedException (typeof (InvalidOperationException))]
                public void ParseInvalidString7 ()
                {