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
path: root/mcs
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
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')
-rw-r--r--mcs/class/System.XML/Test/AllTests.cs2
-rw-r--r--mcs/class/System.XML/Test/ChangeLog23
-rwxr-xr-xmcs/class/System.XML/Test/NameTableTests.cs2
-rw-r--r--mcs/class/System.XML/Test/TheTests.cs12
-rw-r--r--mcs/class/System.XML/Test/XPathScannerTests.cs4
-rw-r--r--mcs/class/System.XML/Test/XmlAttributeTests.cs4
-rwxr-xr-xmcs/class/System.XML/Test/XmlCDataSectionTests.cs4
-rwxr-xr-xmcs/class/System.XML/Test/XmlCommentTests.cs4
-rwxr-xr-xmcs/class/System.XML/Test/XmlDeclarationTests.cs4
-rw-r--r--mcs/class/System.XML/Test/XmlDocumentTests.cs4
-rwxr-xr-xmcs/class/System.XML/Test/XmlDocumentTypeTests.cs4
-rw-r--r--mcs/class/System.XML/Test/XmlElementTests.cs4
-rw-r--r--mcs/class/System.XML/Test/XmlNamespaceManagerTests.cs4
-rw-r--r--mcs/class/System.XML/Test/XmlNodeListTests.cs4
-rw-r--r--mcs/class/System.XML/Test/XmlProcessingInstructionTests.cs4
-rwxr-xr-xmcs/class/System.XML/Test/XmlSignificantWhitespaceTests.cs10
-rw-r--r--mcs/class/System.XML/Test/XmlTextReaderTests.cs4
-rw-r--r--mcs/class/System.XML/Test/XmlTextTests.cs4
-rw-r--r--mcs/class/System.XML/Test/XmlTextWriterTests.cs4
-rwxr-xr-xmcs/class/System.XML/Test/XmlWhiteSpaceTests.cs10
20 files changed, 69 insertions, 46 deletions
diff --git a/mcs/class/System.XML/Test/AllTests.cs b/mcs/class/System.XML/Test/AllTests.cs
index e97c32e34eb..f162b71ff33 100644
--- a/mcs/class/System.XML/Test/AllTests.cs
+++ b/mcs/class/System.XML/Test/AllTests.cs
@@ -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
diff --git a/mcs/class/System.XML/Test/ChangeLog b/mcs/class/System.XML/Test/ChangeLog
index 0fbb63d007d..154606210c8 100644
--- a/mcs/class/System.XML/Test/ChangeLog
+++ b/mcs/class/System.XML/Test/ChangeLog
@@ -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.
diff --git a/mcs/class/System.XML/Test/NameTableTests.cs b/mcs/class/System.XML/Test/NameTableTests.cs
index b967e820e69..ee115132f44 100755
--- a/mcs/class/System.XML/Test/NameTableTests.cs
+++ b/mcs/class/System.XML/Test/NameTableTests.cs
@@ -11,7 +11,7 @@ using System.Xml;
using NUnit.Framework;
-namespace Ximian.Mono.Tests
+namespace MonoTests.System.Xml
{
public class NameTableTests : TestCase
{
diff --git a/mcs/class/System.XML/Test/TheTests.cs b/mcs/class/System.XML/Test/TheTests.cs
index 00fc6f98706..6537bed3754 100644
--- a/mcs/class/System.XML/Test/TheTests.cs
+++ b/mcs/class/System.XML/Test/TheTests.cs
@@ -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 ());
}
}
}
diff --git a/mcs/class/System.XML/Test/XPathScannerTests.cs b/mcs/class/System.XML/Test/XPathScannerTests.cs
index fad9d810c40..f637a303cd5 100644
--- a/mcs/class/System.XML/Test/XPathScannerTests.cs
+++ b/mcs/class/System.XML/Test/XPathScannerTests.cs
@@ -12,11 +12,11 @@ using System.Xml.XPath;
using NUnit.Framework;
-namespace Ximian.Mono.Tests
+namespace MonoTests.System.Xml
{
public class XPathScannerTests : TestCase
{
- public XPathScannerTests () : base ("Ximian.Mono.Tests.XPathScannerTests testsuite") { }
+ public XPathScannerTests () : base ("MonoTests.System.Xml.XPathScannerTests testsuite") { }
public XPathScannerTests (string name) : base (name) { }
public void TestLocationPathWithOneNameTest ()
diff --git a/mcs/class/System.XML/Test/XmlAttributeTests.cs b/mcs/class/System.XML/Test/XmlAttributeTests.cs
index 41ca3b92dbe..dc9961bcd3d 100644
--- a/mcs/class/System.XML/Test/XmlAttributeTests.cs
+++ b/mcs/class/System.XML/Test/XmlAttributeTests.cs
@@ -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;
diff --git a/mcs/class/System.XML/Test/XmlCDataSectionTests.cs b/mcs/class/System.XML/Test/XmlCDataSectionTests.cs
index 84bc194af2c..dad1050fcf6 100755
--- a/mcs/class/System.XML/Test/XmlCDataSectionTests.cs
+++ b/mcs/class/System.XML/Test/XmlCDataSectionTests.cs
@@ -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")
{
}
diff --git a/mcs/class/System.XML/Test/XmlCommentTests.cs b/mcs/class/System.XML/Test/XmlCommentTests.cs
index f3602699e8a..77ff9abe1b7 100755
--- a/mcs/class/System.XML/Test/XmlCommentTests.cs
+++ b/mcs/class/System.XML/Test/XmlCommentTests.cs
@@ -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) {}
diff --git a/mcs/class/System.XML/Test/XmlDeclarationTests.cs b/mcs/class/System.XML/Test/XmlDeclarationTests.cs
index c362e8769ed..2d148cca556 100755
--- a/mcs/class/System.XML/Test/XmlDeclarationTests.cs
+++ b/mcs/class/System.XML/Test/XmlDeclarationTests.cs
@@ -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) {}
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;
diff --git a/mcs/class/System.XML/Test/XmlDocumentTypeTests.cs b/mcs/class/System.XML/Test/XmlDocumentTypeTests.cs
index 4eed88d4511..857478bc51c 100755
--- a/mcs/class/System.XML/Test/XmlDocumentTypeTests.cs
+++ b/mcs/class/System.XML/Test/XmlDocumentTypeTests.cs
@@ -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")
{
}
diff --git a/mcs/class/System.XML/Test/XmlElementTests.cs b/mcs/class/System.XML/Test/XmlElementTests.cs
index 895c903cd17..56828179bfa 100644
--- a/mcs/class/System.XML/Test/XmlElementTests.cs
+++ b/mcs/class/System.XML/Test/XmlElementTests.cs
@@ -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;
diff --git a/mcs/class/System.XML/Test/XmlNamespaceManagerTests.cs b/mcs/class/System.XML/Test/XmlNamespaceManagerTests.cs
index b1b520e2ecc..176c76765cb 100644
--- a/mcs/class/System.XML/Test/XmlNamespaceManagerTests.cs
+++ b/mcs/class/System.XML/Test/XmlNamespaceManagerTests.cs
@@ -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;
diff --git a/mcs/class/System.XML/Test/XmlNodeListTests.cs b/mcs/class/System.XML/Test/XmlNodeListTests.cs
index 4ba9db85929..89fb488f457 100644
--- a/mcs/class/System.XML/Test/XmlNodeListTests.cs
+++ b/mcs/class/System.XML/Test/XmlNodeListTests.cs
@@ -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;
diff --git a/mcs/class/System.XML/Test/XmlProcessingInstructionTests.cs b/mcs/class/System.XML/Test/XmlProcessingInstructionTests.cs
index 532312b7e3e..0926af316aa 100644
--- a/mcs/class/System.XML/Test/XmlProcessingInstructionTests.cs
+++ b/mcs/class/System.XML/Test/XmlProcessingInstructionTests.cs
@@ -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;
diff --git a/mcs/class/System.XML/Test/XmlSignificantWhitespaceTests.cs b/mcs/class/System.XML/Test/XmlSignificantWhitespaceTests.cs
index 165fb69671d..adaef533a17 100755
--- a/mcs/class/System.XML/Test/XmlSignificantWhitespaceTests.cs
+++ b/mcs/class/System.XML/Test/XmlSignificantWhitespaceTests.cs
@@ -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 ()
diff --git a/mcs/class/System.XML/Test/XmlTextReaderTests.cs b/mcs/class/System.XML/Test/XmlTextReaderTests.cs
index bf1477f4e9c..d77e9241337 100644
--- a/mcs/class/System.XML/Test/XmlTextReaderTests.cs
+++ b/mcs/class/System.XML/Test/XmlTextReaderTests.cs
@@ -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)
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;
diff --git a/mcs/class/System.XML/Test/XmlTextWriterTests.cs b/mcs/class/System.XML/Test/XmlTextWriterTests.cs
index 16d49a6ad55..3f50aa23a2a 100644
--- a/mcs/class/System.XML/Test/XmlTextWriterTests.cs
+++ b/mcs/class/System.XML/Test/XmlTextWriterTests.cs
@@ -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;
diff --git a/mcs/class/System.XML/Test/XmlWhiteSpaceTests.cs b/mcs/class/System.XML/Test/XmlWhiteSpaceTests.cs
index f0f16859d3a..d50c749b141 100755
--- a/mcs/class/System.XML/Test/XmlWhiteSpaceTests.cs
+++ b/mcs/class/System.XML/Test/XmlWhiteSpaceTests.cs
@@ -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 ()