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:
authorAtsushi Eno <atsushieno@gmail.com>2006-01-05 07:31:31 +0300
committerAtsushi Eno <atsushieno@gmail.com>2006-01-05 07:31:31 +0300
commit565db0ae52c514f3098070470948d479d7b87917 (patch)
treef97c87ca18187dd1dcd841525ce7f1fc0c4a24d1 /mcs/class/System.XML
parent4e6533c35ba4aa6a9a390db9ebb0d27600621047 (diff)
2006-01-05 Atsushi Enomoto <atsushi@ximian.com>
* XmlTextWriterTests.cs : removed silly part from WriteStartElement_XmlPrefix (). We are not reproducing MS bugs. (kept remaining part of this test; see if it makes sense after bug #77094 got fixed). svn path=/trunk/mcs/; revision=55091
Diffstat (limited to 'mcs/class/System.XML')
-rw-r--r--mcs/class/System.XML/Test/System.Xml/ChangeLog7
-rw-r--r--mcs/class/System.XML/Test/System.Xml/XmlTextWriterTests.cs7
2 files changed, 8 insertions, 6 deletions
diff --git a/mcs/class/System.XML/Test/System.Xml/ChangeLog b/mcs/class/System.XML/Test/System.Xml/ChangeLog
index 746be6ca322..9d34d089bfe 100644
--- a/mcs/class/System.XML/Test/System.Xml/ChangeLog
+++ b/mcs/class/System.XML/Test/System.Xml/ChangeLog
@@ -1,3 +1,10 @@
+2006-01-05 Atsushi Enomoto <atsushi@ximian.com>
+
+ * XmlTextWriterTests.cs : removed silly part from
+ WriteStartElement_XmlPrefix (). We are not reproducing MS bugs.
+ (kept remaining part of this test; see if it makes sense after
+ bug #77094 got fixed).
+
2005-12-29 Gert Driesen <drieseng@users.sourceforge.net>
* XmlTextWriterTests.cs: Do not yet enable tests for WriteWhitespace
diff --git a/mcs/class/System.XML/Test/System.Xml/XmlTextWriterTests.cs b/mcs/class/System.XML/Test/System.Xml/XmlTextWriterTests.cs
index 5f6a2482afb..4fd6f5586d8 100644
--- a/mcs/class/System.XML/Test/System.Xml/XmlTextWriterTests.cs
+++ b/mcs/class/System.XML/Test/System.Xml/XmlTextWriterTests.cs
@@ -525,7 +525,7 @@ namespace MonoTests.System.Xml
}
[Test]
- [Category ("NotWorking")] // bug #77093: namespace declaration is not output if prefix is "xml"
+ [Category ("NotWorking")]
public void WriteStartElement_XmlPrefix ()
{
// uncomment the next code block once bug #77094 has been fixed.
@@ -549,11 +549,6 @@ namespace MonoTests.System.Xml
sw.GetStringBuilder ().Length = 0;
CreateXmlTextWriter ();
*/
-
- xtw.WriteStartElement ("xml", "something", "http://www.w3.org/XML/1998/namespace");
- xtw.WriteEndElement ();
- Assert.AreEqual ("<xml:something xmlns:xml='http://www.w3.org/XML/1998/namespace' />",
- StringWriterText, "#4");
}
[Test]