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:
authorGert Driesen <drieseng@users.sourceforge.net>2006-02-28 22:27:46 +0300
committerGert Driesen <drieseng@users.sourceforge.net>2006-02-28 22:27:46 +0300
commit1d51fe5a1bc9f3a6cfca377f449ce4a52cd0dd2f (patch)
treee046741ad8d596d5e0e9a51d27c0187d417fde8c /mcs
parent89944111162bd34d833f3cba592b2d1a78d7085a (diff)
* XmlSchemaAssertion.cs: Set eol-style to native.
* XmlSchemaBuiltInDatatypeTests.cs: Set eol-style to CRLF. * XmlSchemaCollectionTests.cs: Set eol-style to native. Fixed line endings. * XmlSchemaDatatypeTests.cs: Set eol-style to native. * XmlSchemaExceptionCas.cs: Set eol-style to native. * XmlSchemaLengthFacetTests.cs: Set eol-style to CRLF. * XmlSchemaSetTests.cs: Set eol-style to native. * XmlSchemaTests.cs: Set eol-style to native. * XmlSchemaTypeTests.cs: Set eol-style to native.> svn path=/trunk/mcs/; revision=57418
Diffstat (limited to 'mcs')
-rw-r--r--mcs/class/System.XML/Test/System.Xml.Schema/ChangeLog13
-rw-r--r--mcs/class/System.XML/Test/System.Xml.Schema/XmlSchemaCollectionTests.cs18
2 files changed, 22 insertions, 9 deletions
diff --git a/mcs/class/System.XML/Test/System.Xml.Schema/ChangeLog b/mcs/class/System.XML/Test/System.Xml.Schema/ChangeLog
index 74cc73333c9..bd8051de300 100644
--- a/mcs/class/System.XML/Test/System.Xml.Schema/ChangeLog
+++ b/mcs/class/System.XML/Test/System.Xml.Schema/ChangeLog
@@ -1,5 +1,18 @@
2006-02-28 Gert Driesen <drieseng@users.sourceforge.net>
+ * XmlSchemaAssertion.cs: Set eol-style to native.
+ * XmlSchemaBuiltInDatatypeTests.cs: Set eol-style to CRLF.
+ * XmlSchemaCollectionTests.cs: Set eol-style to native. Fixed line
+ endings.
+ * XmlSchemaDatatypeTests.cs: Set eol-style to native.
+ * XmlSchemaExceptionCas.cs: Set eol-style to native.
+ * XmlSchemaLengthFacetTests.cs: Set eol-style to CRLF.
+ * XmlSchemaSetTests.cs: Set eol-style to native.
+ * XmlSchemaTests.cs: Set eol-style to native.
+ * XmlSchemaTypeTests.cs: Set eol-style to native.>
+
+2006-02-28 Gert Driesen <drieseng@users.sourceforge.net>
+
* XmlSchemaTests.cs: Added test for writing XmlSchema with
zero-length TargetNamespace. Added test for compiling XmlSchema
with zero-length TargetNamespace. Replaced Console.WriteLine with
diff --git a/mcs/class/System.XML/Test/System.Xml.Schema/XmlSchemaCollectionTests.cs b/mcs/class/System.XML/Test/System.Xml.Schema/XmlSchemaCollectionTests.cs
index a5dae6dff27..27d5bc4a35a 100644
--- a/mcs/class/System.XML/Test/System.Xml.Schema/XmlSchemaCollectionTests.cs
+++ b/mcs/class/System.XML/Test/System.Xml.Schema/XmlSchemaCollectionTests.cs
@@ -61,15 +61,15 @@ namespace MonoTests.System.Xml
col.Add (schema2);
}
- [Test]
- public void TestAddDoesCompilation ()
- {
- XmlSchema schema = new XmlSchema ();
- Assert (!schema.IsCompiled);
- XmlSchemaCollection col = new XmlSchemaCollection ();
- col.Add (schema);
- Assert (schema.IsCompiled);
- }
+ [Test]
+ public void TestAddDoesCompilation ()
+ {
+ XmlSchema schema = new XmlSchema ();
+ Assert (!schema.IsCompiled);
+ XmlSchemaCollection col = new XmlSchemaCollection ();
+ col.Add (schema);
+ Assert (schema.IsCompiled);
+ }
[Test] // bug #75126
public void TestGetEnumerator ()