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:
authorNick Drochak <nickd@mono-cvs.ximian.com>2002-05-05 14:31:13 +0400
committerNick Drochak <nickd@mono-cvs.ximian.com>2002-05-05 14:31:13 +0400
commit47c04565a3d8436a02193ca4aac7dd73eff764c2 (patch)
tree7563a7446074fe5b3cd718289b2570b54b7818a8 /mcs/class/System.XML/Test/XmlTextTests.cs
parent4a7a062712d82f39b3e18ef73b903e01a1c54113 (diff)
2002-05-05 Nick Drochak <ndrochak@gol.com>
* AllTests.cs * NameTableTests.cs * TheTests.cs * XPathScannerTests.cs * XmlAttributeTests.cs * XmlCDataSectionTests.cs * XmlCommentTests.cs * XmlDeclarationTests.cs * XmlDocumentTests.cs * XmlDocumentTypeTests.cs * XmlElementTests.cs * XmlNamespaceManagerTests.cs * XmlNodeListTests.cs * XmlProcessingInstructionTests.cs * XmlSignificantWhitespaceTests.cs * XmlTextReaderTests.cs * XmlTextTests.cs * XmlTextWriterTests.cs * XmlWhiteSpaceTests.cs: Use same namespace style as corlib tests. Changed Ximian.Mono.Tests to MonoTests.System.Xml svn path=/trunk/mcs/; revision=4300
Diffstat (limited to 'mcs/class/System.XML/Test/XmlTextTests.cs')
-rw-r--r--mcs/class/System.XML/Test/XmlTextTests.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/mcs/class/System.XML/Test/XmlTextTests.cs b/mcs/class/System.XML/Test/XmlTextTests.cs
index a13ea0d8a8f..a885402e354 100644
--- a/mcs/class/System.XML/Test/XmlTextTests.cs
+++ b/mcs/class/System.XML/Test/XmlTextTests.cs
@@ -11,11 +11,11 @@ using System;
using System.Xml;
using NUnit.Framework;
-namespace Ximian.Mono.Tests
+namespace MonoTests.System.Xml
{
public class XmlTextTests : TestCase
{
- public XmlTextTests () : base ("Ximian.Mono.Tests.XmlTextTests testsuite") {}
+ public XmlTextTests () : base ("MonoTests.System.Xml.XmlTextTests testsuite") {}
public XmlTextTests (string name) : base (name) {}
XmlDocument document;