* XmlTextWriterTests.cs: Allow all tests to pass on .NET 1.1.
authorGert Driesen <drieseng@users.sourceforge.net>
Tue, 27 Dec 2005 08:37:50 +0000 (08:37 -0000)
committerGert Driesen <drieseng@users.sourceforge.net>
Tue, 27 Dec 2005 08:37:50 +0000 (08:37 -0000)
svn path=/trunk/mcs/; revision=54859

mcs/class/System.XML/Test/System.Xml/ChangeLog
mcs/class/System.XML/Test/System.Xml/XmlTextWriterTests.cs

index ca84f27a78570b3d1a08208eb6a5ddc35d84bc8d..85b2f984740e326a4467b31e5291d858438d5dfc 100644 (file)
@@ -1,3 +1,7 @@
+2005-12-27  Gert Driesen <drieseng@users.sourceforge.net>
+
+       * XmlTextWriterTests.cs: Allow all tests to pass on .NET 1.1.
+
 2005-12-26  Atsushi Enomoto <atsushi@ximian.com>
 
        * XmlTextWriterTests.cs : enabled
index 9d952de96936474e789d13cb5701b643792a42ca..a70f1a124d0e5aa8dff6d81bc1deffc1d1ece996 100644 (file)
@@ -504,6 +504,9 @@ namespace MonoTests.System.Xml
                }
 
                [Test]
+#if ONLY_1_1
+               [Category ("NotDotNet")] // MS.NET 1.1 does not allow zero-length namespace URI
+#endif
                public void WriteStartElement_Prefix_EmptyNamespace ()
                {
                        xtw.WriteStartElement ("x", "whatever", "");
@@ -1007,6 +1010,9 @@ namespace MonoTests.System.Xml
                }
 
                [Test]
+#if ONLY_1_1
+               [Category ("NotDotNet")] // MS.NET 1.1 does not allow zero-length namespace URI
+#endif
                public void NamespacesPrefixWithEmptyAndNullNamespaceEmpty ()
                {
                        xtw.WriteStartElement ("foo", "bar", "");