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:
Diffstat (limited to 'mcs/class/System.XML/Test/XmlTextTests.cs')
-rw-r--r--mcs/class/System.XML/Test/XmlTextTests.cs36
1 files changed, 0 insertions, 36 deletions
diff --git a/mcs/class/System.XML/Test/XmlTextTests.cs b/mcs/class/System.XML/Test/XmlTextTests.cs
deleted file mode 100644
index a885402e354..00000000000
--- a/mcs/class/System.XML/Test/XmlTextTests.cs
+++ /dev/null
@@ -1,36 +0,0 @@
-//
-// System.Xml.XmlTextWriterTests
-//
-// Author:
-// Kral Ferch <kral_ferch@hotmail.com>
-//
-// (C) 2002 Kral Ferch
-//
-
-using System;
-using System.Xml;
-using NUnit.Framework;
-
-namespace MonoTests.System.Xml
-{
- public class XmlTextTests : TestCase
- {
- public XmlTextTests () : base ("MonoTests.System.Xml.XmlTextTests testsuite") {}
- public XmlTextTests (string name) : base (name) {}
-
- XmlDocument document;
- XmlText text;
-
- protected override void SetUp ()
- {
- document = new XmlDocument ();
- }
-
- public void TestInnerAndOuterXml ()
- {
- text = document.CreateTextNode ("&<>\"'");
- AssertEquals (String.Empty, text.InnerXml);
- AssertEquals ("&amp;&lt;&gt;\"'", text.OuterXml);
- }
- }
-}