* SqlCommandTest.cs: Added test for bug #81710.
authorGert Driesen <drieseng@users.sourceforge.net>
Tue, 29 May 2007 18:01:40 +0000 (18:01 -0000)
committerGert Driesen <drieseng@users.sourceforge.net>
Tue, 29 May 2007 18:01:40 +0000 (18:01 -0000)
* System.Data_test.dll.sources: Added SqlCommandTest.cs.

svn path=/trunk/mcs/; revision=78147

mcs/class/System.Data/ChangeLog
mcs/class/System.Data/System.Data_test.dll.sources
mcs/class/System.Data/Test/System.Data.SqlClient/ChangeLog
mcs/class/System.Data/Test/System.Data.SqlClient/SqlCommandTest.cs [new file with mode: 0644]

index d7af80ed2ab66faad8359a3bee48d36544185985..efc6e7be25101f9ead47a5f6613d9581118e487c 100644 (file)
@@ -1,3 +1,7 @@
+2007-05-29  Gert Driesen  <drieseng@users.sourceforge.net>
+
+       * System.Data_test.dll.sources: Added SqlCommandTest.cs.
+
 2007-03-09  Nagappan A  <anagappan@novell.com>
 
        * System.Data.dll.sources: Removed
index 2f9850d7681057a25ce3b4251b47725665ff5a9d..9c41aaef7bd616fa0254af44ce81787db6446639 100644 (file)
@@ -91,6 +91,7 @@ System.Data.Odbc/OdbcParameterCollectionTest.cs
 System.Data.OleDb/OleDbParameterCollectionTest.cs
 System.Data.OleDb/OleDbPermissionAttributeTest.cs
 System.Data.OleDb/OleDbPermissionTest.cs
+System.Data.SqlClient/SqlCommandTest.cs
 System.Data.SqlClient/SqlConnectionTest.cs
 System.Data.SqlClient/SqlConnectionStringBuilderTest.cs
 System.Data.SqlClient/SqlClientPermissionAttributeTest.cs
index 62444af55addabc96c0fa47c424f1c7403980aa9..a89ba99920a43d911a23cc0ecf2aceed0c5ced62 100644 (file)
@@ -1,3 +1,7 @@
+2007-05-29  Gert Driesen  <drieseng@users.sourceforge.net>
+
+       * SqlCommandTest.cs: Added test for bug #81710.
+
 2005-09-22  Sebastien Pouliot  <sebastien@ximian.com>
 
        * SqlClientPermissionAttributeTest.cs: Removed *Choice security 
diff --git a/mcs/class/System.Data/Test/System.Data.SqlClient/SqlCommandTest.cs b/mcs/class/System.Data/Test/System.Data.SqlClient/SqlCommandTest.cs
new file mode 100644 (file)
index 0000000..730043c
--- /dev/null
@@ -0,0 +1,50 @@
+//
+// SqlCommandTest.cs - NUnit Test Cases for testing
+// System.Data.SqlClient.SqlCommand
+// 
+// Author:
+//     Gert Driesen (drieseng@users.sourceforge.net)
+//
+// Copyright (c) 2007 Gert Driesen
+//
+// 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 System.Data.SqlClient;
+
+using NUnit.Framework;
+
+namespace MonoTests.System.Data.SqlClient
+{
+       [TestFixture]
+       public class SqlCommandTest
+       {
+               [Test] // bug #81710
+               public void Dispose ()
+               {
+                       string connectionString = "Initial Catalog=a;Server=b;User ID=c;"
+                               + "Password=d";
+                       SqlConnection connection = new SqlConnection (connectionString);
+                       SqlCommand command = connection.CreateCommand ();
+                       command.Dispose ();
+                       Assert.AreEqual (connectionString, connection.ConnectionString);
+               }
+       }
+}