2002-05-05 Nick Drochak <ndrochak@gol.com>
authorNick Drochak <nickd@mono-cvs.ximian.com>
Sun, 5 May 2002 10:31:13 +0000 (10:31 -0000)
committerNick Drochak <nickd@mono-cvs.ximian.com>
Sun, 5 May 2002 10:31:13 +0000 (10:31 -0000)
* 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

20 files changed:
mcs/class/System.XML/Test/AllTests.cs
mcs/class/System.XML/Test/ChangeLog
mcs/class/System.XML/Test/NameTableTests.cs
mcs/class/System.XML/Test/TheTests.cs
mcs/class/System.XML/Test/XPathScannerTests.cs
mcs/class/System.XML/Test/XmlAttributeTests.cs
mcs/class/System.XML/Test/XmlCDataSectionTests.cs
mcs/class/System.XML/Test/XmlCommentTests.cs
mcs/class/System.XML/Test/XmlDeclarationTests.cs
mcs/class/System.XML/Test/XmlDocumentTests.cs
mcs/class/System.XML/Test/XmlDocumentTypeTests.cs
mcs/class/System.XML/Test/XmlElementTests.cs
mcs/class/System.XML/Test/XmlNamespaceManagerTests.cs
mcs/class/System.XML/Test/XmlNodeListTests.cs
mcs/class/System.XML/Test/XmlProcessingInstructionTests.cs
mcs/class/System.XML/Test/XmlSignificantWhitespaceTests.cs
mcs/class/System.XML/Test/XmlTextReaderTests.cs
mcs/class/System.XML/Test/XmlTextTests.cs
mcs/class/System.XML/Test/XmlTextWriterTests.cs
mcs/class/System.XML/Test/XmlWhiteSpaceTests.cs

index e97c32e34ebed3c59932a408f1feef5d082d2e28..f162b71ff33c7d622217eda3de3858e0fa8b9f68 100644 (file)
@@ -6,7 +6,7 @@
 
 using NUnit.Framework;
 
-namespace Ximian.Mono.Tests
+namespace MonoTests.System.Xml
 {
        /// <summary>
        ///   Combines all unit tests for the System.XML.dll assembly
index 0fbb63d007d7b5037c8b50c5d98403ac301fb2a1..154606210c8cdb64449b7757fa3f9cb409efb63b 100644 (file)
@@ -1,3 +1,26 @@
+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
+
 2002-04-08  Kral Ferch  <kral_ferch@hotmail.com>
 
        * AllTests.cs: added XmlProcessingInstructionTests and XmlTextTests.
index b967e820e69c496344cf4e4c9dbc1c67a96e00f7..ee115132f44120e94e46ea7a1ce9af01ddfa1d60 100755 (executable)
@@ -11,7 +11,7 @@ using System.Xml;
 
 using NUnit.Framework;
 
-namespace Ximian.Mono.Tests
+namespace MonoTests.System.Xml
 {
        public class NameTableTests : TestCase
        {
index 00fc6f987063f2b4e59fc9b8a5d18334c5be7478..6537bed3754c8aa32a8c4a28b9d19c63007fcd1a 100644 (file)
@@ -3,7 +3,7 @@ using System;
 using System.Threading;
 using System.Globalization;
 
-namespace Ximian.Mono.Tests
+namespace MonoTests.System.Xml
 {
        public class RunXmlTextReaderTests : XmlTextReaderTests
        {
@@ -39,7 +39,7 @@ namespace Ximian.Mono.Tests
        }
 }
 
-namespace Ximian.Mono.Tests
+namespace MonoTests.System.Xml
 {
        public class RunXmlNamespaceManagerTests : XmlNamespaceManagerTests
        {
@@ -53,7 +53,7 @@ namespace Ximian.Mono.Tests
        }
 }
 
-namespace Ximian.Mono.Tests
+namespace MonoTests.System.Xml
 {
        public class RunXmlDocumentTests : XmlDocumentTests
        {
@@ -70,9 +70,9 @@ namespace MonoTests
        {
                public static void AddAllTests (TestSuite suite)
                {
-                       suite.AddTest (new Ximian.Mono.Tests.RunXmlTextReaderTests ());
-                       suite.AddTest (new Ximian.Mono.Tests.RunXmlNamespaceManagerTests ());
-                       suite.AddTest (new Ximian.Mono.Tests.RunXmlDocumentTests ());
+                       suite.AddTest (new MonoTests.System.Xml.RunXmlTextReaderTests ());
+                       suite.AddTest (new MonoTests.System.Xml.RunXmlNamespaceManagerTests ());
+                       suite.AddTest (new MonoTests.System.Xml.RunXmlDocumentTests ());
                }
        }
 }
index fad9d810c40e9314e29f9e13e5a5dc28584e7d91..f637a303cd54085114170a2490cfe971e0a4c350 100644 (file)
@@ -12,11 +12,11 @@ using System.Xml.XPath;
 \r
 using NUnit.Framework;\r
 \r
-namespace Ximian.Mono.Tests\r
+namespace MonoTests.System.Xml\r
 {\r
        public class XPathScannerTests : TestCase\r
        {\r
-               public XPathScannerTests () : base ("Ximian.Mono.Tests.XPathScannerTests testsuite") { }\r
+               public XPathScannerTests () : base ("MonoTests.System.Xml.XPathScannerTests testsuite") { }\r
                public XPathScannerTests (string name) : base (name) { }\r
 \r
                public void TestLocationPathWithOneNameTest ()\r
index 41ca3b92dbecb22e3c22f932dca4e3ac59777431..dc9961bcd3d6cc711925ec33d282a2de88297230 100644 (file)
@@ -9,11 +9,11 @@ using System.Xml;
 
 using NUnit.Framework;
 
-namespace Ximian.Mono.Tests
+namespace MonoTests.System.Xml
 {
        public class XmlAttributeTests : TestCase
        {
-               public XmlAttributeTests() : base("Ximian.Mono.Tests.XmlAttributeTests testsuite") { }
+               public XmlAttributeTests() : base("MonoTests.System.Xml.XmlAttributeTests testsuite") { }
                public XmlAttributeTests(string name) : base(name) { }
 
                XmlDocument doc;
index 84bc194af2c556a14c9b9898a7b3e46f8c6f36b3..dad1050fcf6902f5cf2cbe764c91cdcf61e98195 100755 (executable)
@@ -12,7 +12,7 @@ using System.Xml;
 
 using NUnit.Framework;
 
-namespace Ximian.Mono.Tests
+namespace MonoTests.System.Xml
 {
        public class XmlCDataSectionTests : TestCase
        {
@@ -23,7 +23,7 @@ namespace Ximian.Mono.Tests
                XmlNode shallow;
 
                public XmlCDataSectionTests ()
-                       : base ("Ximian.Mono.Tests.XmlCDataSectionTests testsuite")
+                       : base ("MonoTests.System.Xml.XmlCDataSectionTests testsuite")
                {
                }
 
index f3602699e8a2c69a78e2916d8b9ab9354cc75fb9..77ff9abe1b7ac9ec9b2abd22eae752b7bd02eb55 100755 (executable)
@@ -12,7 +12,7 @@ using System.Xml;
 
 using NUnit.Framework;
 
-namespace Ximian.Mono.Tests
+namespace MonoTests.System.Xml
 {
        public class XmlCommentTests : TestCase
        {
@@ -22,7 +22,7 @@ namespace Ximian.Mono.Tests
                XmlNode deep;
                XmlNode shallow;
 
-               public XmlCommentTests () : base ("Ximian.Mono.Tests.XmlCommentTests testsuite") {}
+               public XmlCommentTests () : base ("MonoTests.System.Xml.XmlCommentTests testsuite") {}
 
                public XmlCommentTests (string name) : base (name) {}
 
index c362e8769ed7730af8d3e0601572b32164b679a4..2d148cca556b044f7e78c7221b1b5205f9275ae9 100755 (executable)
@@ -12,7 +12,7 @@ using System.Xml;
 
 using NUnit.Framework;
 
-namespace Ximian.Mono.Tests
+namespace MonoTests.System.Xml
 {
        public class XmlDeclarationTests : TestCase
        {
@@ -20,7 +20,7 @@ namespace Ximian.Mono.Tests
                XmlDocument document;
                XmlDeclaration declaration;
                
-               public XmlDeclarationTests () : base ("Ximian.Mono.Tests.XmlDeclarationTests testsuite") {}
+               public XmlDeclarationTests () : base ("MonoTests.System.Xml.XmlDeclarationTests testsuite") {}
                
                public XmlDeclarationTests (string name) : base (name) {}
 
index 5dd96282a9ca6f99ffcbc59585d8b6622f4c8a33..c9fcb3cd875c9638c95b4371938c8840eeebae0e 100644 (file)
@@ -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;
index 4eed88d4511bd9b09811fb2d72c9be151b10b056..857478bc51c2dd31d9c9fae628f7606b5f0a71a2 100755 (executable)
@@ -11,14 +11,14 @@ using System.Xml;
 
 using NUnit.Framework;
 
-namespace Ximian.Mono.Tests
+namespace MonoTests.System.Xml
 {
        public class XmlDocumentTypeTests : TestCase
        {
                XmlDocument document;
                XmlDocumentType docType;
                public XmlDocumentTypeTests ()
-                       : base ("XmlDocumentTypeTests testsuite")
+                       : base ("MonoTests.System.Xml.XmlDocumentTypeTests testsuite")
                {
                }
 
index 895c903cd173094ca375747248a0b52fe4c62b4a..56828179bfa64e6b12ef40b75356b1f00c2cc931 100644 (file)
@@ -12,11 +12,11 @@ using System.Xml;
 
 using NUnit.Framework;
 
-namespace Ximian.Mono.Tests
+namespace MonoTests.System.Xml
 {
        public class XmlElementTests : TestCase
        {
-               public XmlElementTests () : base ("Ximian.Mono.Tests.XmlElementTests testsuite") { }
+               public XmlElementTests () : base ("MonoTests.System.Xml.XmlElementTests testsuite") { }
                public XmlElementTests (string name) : base (name) { }
 
                private XmlDocument document;
index b1b520e2ecc7269b42df0007a67eec56c2a8d9a8..176c76765cb135d5accd927152ed0f9089694f87 100644 (file)
@@ -12,11 +12,11 @@ using System.Xml;
 
 using NUnit.Framework;
 
-namespace Ximian.Mono.Tests
+namespace MonoTests.System.Xml
 {
        public class XmlNamespaceManagerTests : TestCase
        {
-               public XmlNamespaceManagerTests () : base ("Ximian.Mono.Tests.XmlNameSpaceManagerTests testsuite") { }
+               public XmlNamespaceManagerTests () : base ("MonoTests.System.Xml.XmlNameSpaceManagerTests testsuite") { }
                public XmlNamespaceManagerTests (string name) : base (name) { }
 
                private XmlNameTable nameTable;
index 4ba9db859293574e863cda545783286c6b5d852e..89fb488f4578eaf69fdde6bbc9a02b4f9e2ed239 100644 (file)
@@ -4,11 +4,11 @@ using System.Collections;
 
 using NUnit.Framework;
 
-namespace Ximian.Mono.Tests
+namespace MonoTests.System.Xml
 {
        public class XmlNodeListTests : TestCase
        {
-               public XmlNodeListTests () : base ("Ximian.Mono.Tests.XmlNodeListTests testsuite") {}
+               public XmlNodeListTests () : base ("MonoTests.System.Xml.XmlNodeListTests testsuite") {}
                public XmlNodeListTests (string name) : base (name) {}
                
                XmlDocument document;
index 532312b7e3ef159501f8f10fcb7362aeaae4c201..0926af316aa13cb43055578d74893392734477d9 100644 (file)
@@ -11,11 +11,11 @@ using System;
 using System.Xml;
 using NUnit.Framework;
 
-namespace Ximian.Mono.Tests
+namespace MonoTests.System.Xml
 {
        public class XmlProcessingInstructionTests : TestCase
        {
-               public XmlProcessingInstructionTests () : base ("Ximian.Mono.Tests.XmlProcessingInstructionTests testsuite") {}
+               public XmlProcessingInstructionTests () : base ("MonoTests.System.Xml.XmlProcessingInstructionTests testsuite") {}
                public XmlProcessingInstructionTests (string name) : base (name) {}
 
                XmlDocument document;
index 165fb69671d7622a200660cc2e961b60d42f62dd..adaef533a17403d3a6aa32ab4778a1e544f8e8c1 100755 (executable)
@@ -12,7 +12,7 @@ using System.Xml;
 
 using NUnit.Framework;
 
-namespace Ximian.Mono.Tests
+namespace MonoTests.System.Xml
 {
        public class XmlSignificantWhitespaceTests : TestCase
        {
@@ -20,11 +20,11 @@ namespace Ximian.Mono.Tests
                XmlDocument doc2;
                XmlSignificantWhitespace whitespace;
                XmlSignificantWhitespace broken;
-        XmlNode original;
-        XmlNode deep;
-        XmlNode shallow;
+               XmlNode original;
+               XmlNode deep;
+               XmlNode shallow;
                
-               public XmlSignificantWhitespaceTests () : base ("Ximian.Mono.Tests.XmlWhitespaceTests testsuite") {}
+               public XmlSignificantWhitespaceTests () : base ("MonoTests.System.Xml.XmlWhitespaceTests testsuite") {}
                public XmlSignificantWhitespaceTests (string name) : base (name) {}
 
                protected override void SetUp ()
index bf1477f4e9cf5c29da697d5050fe0c300a9fd7c2..d77e9241337e8936e6afe3b50023f331a98dee88 100644 (file)
@@ -13,11 +13,11 @@ using System.Xml;
 
 using NUnit.Framework;
 
-namespace Ximian.Mono.Tests
+namespace MonoTests.System.Xml
 {
        public class XmlTextReaderTests : TestCase
        {
-               public XmlTextReaderTests () : base ("Ximian.Mono.Tests.XmlTextReaderTests testsuite") { }
+               public XmlTextReaderTests () : base ("MonoTests.System.Xml.XmlTextReaderTests testsuite") { }
                public XmlTextReaderTests (string name) : base (name) { }
 
                private void AssertStartDocument (XmlReader xmlReader)
index a13ea0d8a8fb2efde29674fa3bb84a69abc06e5a..a885402e354835f8671a15b8af94793d0305e182 100644 (file)
@@ -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;
index 16d49a6ad55f0bbd0068ade362484a38d2ae8920..3f50aa23a2ae85d98921438e696fc958c4d0cf20 100644 (file)
@@ -14,11 +14,11 @@ using System.Xml;
 
 using NUnit.Framework;
 
-namespace Ximian.Mono.Tests
+namespace MonoTests.System.Xml
 {
        public class XmlTextWriterTests : TestCase
        {
-               public XmlTextWriterTests () : base ("Ximian.Mono.Tests.XmlTextWriterTests testsuite") {}
+               public XmlTextWriterTests () : base ("MonoTests.System.Xml.XmlTextWriterTests testsuite") {}
                public XmlTextWriterTests (string name) : base (name) {}
 
                StringWriter sw;
index f0f16859d3a486afc5b86d90c96e1ac2545efe21..d50c749b141b468c7b688f50b1592773abe53d25 100755 (executable)
@@ -12,7 +12,7 @@ using System.Xml;
 
 using NUnit.Framework;
 
-namespace Ximian.Mono.Tests
+namespace MonoTests.System.Xml
 {
        public class XmlWhitespaceTests : TestCase
        {
@@ -20,11 +20,11 @@ namespace Ximian.Mono.Tests
                XmlDocument doc2;
                XmlWhitespace whitespace;
                XmlWhitespace broken;
-        XmlNode original;
-        XmlNode deep;
-        XmlNode shallow;
+               XmlNode original;
+               XmlNode deep;
+               XmlNode shallow;
                
-               public XmlWhitespaceTests () : base ("Ximian.Mono.Tests.XmlWhitespaceTests testsuite") {}
+               public XmlWhitespaceTests () : base ("MonoTests.System.Xml.XmlWhitespaceTests testsuite") {}
                public XmlWhitespaceTests (string name) : base (name) {}
 
                protected override void SetUp ()