* OleDbParameterCollectionTest.cs: Fix compile error in 1.1 profile.
authorRaja R Harinath <harinath@hurrynot.org>
Thu, 22 Feb 2007 05:49:09 +0000 (05:49 -0000)
committerRaja R Harinath <harinath@hurrynot.org>
Thu, 22 Feb 2007 05:49:09 +0000 (05:49 -0000)
svn path=/trunk/mcs/; revision=73292

mcs/class/System.Data/Test/System.Data.OleDb/ChangeLog
mcs/class/System.Data/Test/System.Data.OleDb/OleDbParameterCollectionTest.cs

index f009969d6f6433f4820ee0abedf9322623c0d599..91822ffb688a78219151f9977ae5c1190622f9d4 100644 (file)
@@ -1,3 +1,7 @@
+2007-02-22  Raja R Harinath  <rharinath@novell.com>
+
+       * OleDbParameterCollectionTest.cs: Fix compile error in 1.1 profile.
+
 2007-02-20  Frederik Carlier <frederik.carlier@carlier-online.be>
 
        * OleDbParameterCollectionTest.cs: New. Unit tests for OleDbParameterCollection.
index c6790dbdce4687bc124c90ca99d4b8bc758b5d56..adb722a1dcaacec14819acff3abc4d2290f159d7 100644 (file)
@@ -1,45 +1,45 @@
-//\r
-// OleDbParameterCollectionTest.cs -\r
-//     NUnit Test Cases for OleDbParameterCollection\r
-//\r
-// Author:\r
-//     Frederik Carlier  <frederik.carlier@ugent.be>\r
-//\r
-// Copyright (C) 2004 Novell, Inc (http://www.novell.com)\r
-//\r
-// Permission is hereby granted, free of charge, to any person obtaining\r
-// a copy of this software and associated documentation files (the\r
-// "Software"), to deal in the Software without restriction, including\r
-// without limitation the rights to use, copy, modify, merge, publish,\r
-// distribute, sublicense, and/or sell copies of the Software, and to\r
-// permit persons to whom the Software is furnished to do so, subject to\r
-// the following conditions:\r
-// \r
-// The above copyright notice and this permission notice shall be\r
-// included in all copies or substantial portions of the Software.\r
-// \r
-// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,\r
-// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\r
-// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\r
-// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\r
-// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\r
-// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\r
-// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r
-//\r
-\r
-using NUnit.Framework;\r
-using System;\r
-using System.Data;\r
-using System.Data.OleDb;\r
-\r
-namespace MonoTests.System.Data.OleDb {\r
-\r
-       [TestFixture]\r
-       public class OleDbParameterCollectionTest {\r
+//
+// OleDbParameterCollectionTest.cs -
+//     NUnit Test Cases for OleDbParameterCollection
+//
+// Author:
+//     Frederik Carlier  <frederik.carlier@ugent.be>
+//
+// Copyright (C) 2004 Novell, Inc (http://www.novell.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
+using NUnit.Framework;
+using System;
+using System.Data;
+using System.Data.OleDb;
+
+namespace MonoTests.System.Data.OleDb {
+
+       [TestFixture]
+       public class OleDbParameterCollectionTest {
 
 #if NET_2_0
-               [Test]\r
-               public void AddWithValueTest ()\r
+               [Test]
+               public void AddWithValueTest ()
                {
                        OleDbCommand command = new OleDbCommand();
                        OleDbParameterCollection parameters = command.Parameters;
@@ -52,8 +52,8 @@ namespace MonoTests.System.Data.OleDb {
                        Assert.AreEqual(DbType.AnsiString, parameter.DbType);
                        Assert.AreEqual(OleDbType.VarChar, parameter.OleDbType);
                        Assert.AreEqual(1, parameters.Count);
-                       Assert.AreEqual(parameter, parameters[0]);      \r
-               }\r
+                       Assert.AreEqual(parameter, parameters[0]);      
+               }
+#endif
        }
-#endif\r
 }