2004-07-01 Sureshkumar T <tsureshkumar@novell.com>
authorSureshkumar T <suresh@mono-cvs.ximian.com>
Thu, 1 Jul 2004 05:38:51 +0000 (05:38 -0000)
committerSureshkumar T <suresh@mono-cvs.ximian.com>
Thu, 1 Jul 2004 05:38:51 +0000 (05:38 -0000)
        * Added test case for OdbcCommand.ExecuteScalar Method
        * New files:
                OdbcCommandTest.cs      - test suite for OdbcCommand class.

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

mcs/class/System.Data/Test/System.Data.Odbc/ChangeLog
mcs/class/System.Data/Test/System.Data.Odbc/OdbcCommandTest.cs [new file with mode: 0644]

index bd7b77d4f196b1ef9e80554e9dfc793c01b98610..8df7a0151f217213414017031a2252ce69188351 100644 (file)
@@ -1,3 +1,8 @@
+2004-07-01  Sureshkumar T <tsureshkumar@novell.com>
+       * Added test case for OdbcCommand.ExecuteScalar Method
+       * New files:
+               OdbcCommandTest.cs      - test suite for OdbcCommand class.
+
 2004-06-23  Sureshkumar T <TSureshkumar@novell.com>
        * Added test to check whether the OdbcConnection.Close method closes
          all the handles.
diff --git a/mcs/class/System.Data/Test/System.Data.Odbc/OdbcCommandTest.cs b/mcs/class/System.Data/Test/System.Data.Odbc/OdbcCommandTest.cs
new file mode 100644 (file)
index 0000000..8b3968c
--- /dev/null
@@ -0,0 +1,70 @@
+//\r
+// OdbcCommandTest.cs - NUnit Test Cases for testing the\r
+// OdbcCommand class\r
+//\r
+// Author: \r
+//      Sureshkumar T (TSureshkumar@novell.com)\r
+// \r
+// Copyright (c) 2004 Novell Inc., and the individuals listed\r
+// on the ChangeLog entries.\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
+\r
+using System;\r
+using System.Data;\r
+using System.Data.Odbc;\r
+\r
+using NUnit.Framework;\r
+\r
+namespace MonoTests.System.Data.Odbc\r
+{\r
+\r
+       [TestFixture]\r
+       public class OdbcCommandTest : MySqlOdbcBaseClient \r
+       {\r
+               \r
+               [SetUp]\r
+               public void GetReady () {\r
+                       OpenConnection ();\r
+                       CreateTestSetup (); // create database & test tables\r
+               }\r
+\r
+               [TearDown]\r
+               public void Clean () {\r
+                       CleanTestSetup (); // clean test database;\r
+                       CloseConnection ();\r
+               }\r
+\r
+               /// <summary>\r
+               /// Test Execute Scalar Method\r
+               /// </summary>\r
+               [Test]\r
+               public void ExecuteScalarTest () \r
+               {\r
+                       OdbcCommand cmd = conn.CreateCommand ();\r
+                       string query = "select count(*) from test order by col_int;";\r
+                       cmd.CommandText = query;\r
+                       object objCount = cmd.ExecuteScalar ();\r
+                       Assertion.AssertEquals( "ExecuteScalar does not return int type", 5, Convert.ToInt32(objCount));\r
+               }\r
+       }\r
+}\r