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/XmlDocumentTests.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/XmlDocumentTests.cs')
-rw-r--r--mcs/class/System.XML/Test/XmlDocumentTests.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/mcs/class/System.XML/Test/XmlDocumentTests.cs b/mcs/class/System.XML/Test/XmlDocumentTests.cs
index 5dd96282a9c..c9fcb3cd875 100644
--- a/mcs/class/System.XML/Test/XmlDocumentTests.cs
+++ b/mcs/class/System.XML/Test/XmlDocumentTests.cs
@@ -3,11 +3,11 @@ using System.Xml;
using NUnit.Framework;
-namespace Ximian.Mono.Tests
+namespace MonoTests.System.Xml
{
public class XmlDocumentTests : TestCase
{
- public XmlDocumentTests () : base ("Ximian.Mono.Tests.XmlDocumentTests testsuite") {}
+ public XmlDocumentTests () : base ("MonoTests.System.Xml.XmlDocumentTests testsuite") {}
public XmlDocumentTests (string name) : base (name) {}
private XmlDocument document;