Forráskód Böngészése

* 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

Gert Driesen 20 éve
szülő
commit
1d51fe5a1b

+ 13 - 0
mcs/class/System.XML/Test/System.Xml.Schema/ChangeLog

@@ -1,3 +1,16 @@
+2006-02-28  Gert Driesen <[email protected]>
+
+	* 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 <[email protected]>
 
 	* XmlSchemaTests.cs: Added test for writing XmlSchema with

+ 9 - 9
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 ()