ChangeLog 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  1. 2007-04-03 Amit Biswas <[email protected]>
  2. * SqlDataReaderTest.cs (GetSqlBytesTest): Test case for GetSqlBytes
  3. (GetProviderSpecificFieldTypeTest): Test case for GetProviderSpecificFieldTypeTest
  4. (GetProviderSpecificValueTest): Test case for GetProviderSpecificValueTest
  5. (GetProviderSpecificValueLowerBoundaryTest):
  6. (GetProviderSpecificValueUpperBoundaryTest):
  7. (GetProviderSpecificValuesTest): Test case for GetProviderSpecificValuesTest
  8. (GetProviderSpecificValuesSmallArrayTest): Test case with an array smaller than no. of columns
  9. (GetProviderSpecificValuesLargeArrayTest): Test case with an array larger than no. of columns
  10. (GetProviderSpecificValuesNullTest): Test case for null parameters
  11. * SqlParameterTest.cs (XmlSchemaTest): Test case for properties related to XML schema
  12. (SourceColumnNullMappingTest): Test case for SourceColumnNullMappingTest
  13. (ctor7Test): Test case to the constructor new in .net 2.0
  14. * SqlParameterTest.cs (ParameterType): Corrected a bug in the test case regarding
  15. default values of SqlDbType and DbType
  16. (SqlDbTypeTest): Test for SqlDbType and DbType properties
  17. (ResetSqlDbTypeTest): Test for ResetSqlDbType method
  18. (ResetDbTypeTest): Test for ResetDbType method
  19. * SqlParameterCollectionTest.cs (CopyToTest): Test case for CopyTo method
  20. 2007-03-23 Nidhi Rawal <[email protected]>
  21. * SqlCommandTest.cs (BeginExecuteXmlReaderTest): Written test case for the method
  22. BeginExecuteXmlReader.
  23. (BeginExecuteXmlReaderExceptionTest): Written test case for the method BeginExecuteXmlReader
  24. to check for InvalidOperationException.
  25. (CloneObjTest): Written test case for the method Clone.
  26. * SqlConnectionTest.cs (ChangePasswordNullConnStringTest): Written test case for the method
  27. ChangePassword to check for null connection string.
  28. (ChangePasswordNullPasswordTest): Written test case for the method ChangePassword to check for
  29. null new password.
  30. (ChangePasswordEmptyPasswordTest): Written test case for the method ChangePassword to check for
  31. password as empty string.
  32. (ChangePasswordExceedPasswordTest): Written test case for the method ChangePassword to check
  33. if the password exceeds its permitted size.
  34. * SqlClientFactory.cs: Created the class.
  35. (CreatePermissionTest): Added a test case for the method CreatePermission.
  36. 2007-03-20 Nidhi Rawal <[email protected]>
  37. * SqlConnectionStringBuilderTest.cs: Fixed the bug by including the
  38. category sqlserver, in the absence of which none of the test-cases
  39. were executing.
  40. (TrustServerCertificateTest): Written test-case for the property TrustServerCertificate.
  41. (TypeSystemVersionTest): Written test-case for the property TypeSystemVersion.
  42. (UserInstanceTest): Written test-case for the property UserInstance.
  43. (SettingUserInstanceTest): Written test-case for checking the connection string after
  44. assigning the value for keyword User Instance.
  45. (ContextConnectionTest): Written test-case for the property ContextConnection.
  46. (SettingContextConnectionTest): Written test-case for checking the connection string after
  47. assigning the value for keyword Context Connection.
  48. * SqlCommandTest.cs (NotificationTest): Written test-case for property Notification.
  49. (NotificationAutoEnlistTest): Written the test-case for property NotificationAutoEnlist.
  50. * SqlConnectionTest.cs (FireInfoMessageEventOnUserErrorsTest): Written
  51. test-case for the property FireInfoMessageEventOnUserErrors.
  52. (StatisticsEnabledTest): Written test-case for the property StatisticsEnabled.
  53. * SqlDataAdapterTest.cs (UpdateBatchSizeTest): Written test-case for the
  54. property UpdateBatchSize.
  55. (UpdateBatchSizeArgumentOutOfRangeTest): Written test-case for the ArgumentOutOfRange
  56. exception for UpdateBatchSize property.
  57. 2007-03-19 Nidhi Rawal <[email protected]>
  58. * SqlParameterTest.cs (CompareInfoTest): Written the test case
  59. for property CompareInfo.
  60. (LocaleIdTest): Written the test case for property LocaleId.
  61. (SqlValueTest): Written test case for property SqlValue.
  62. 2007-03-16 Andreia Gaita <[email protected]>
  63. * SqlCommandTest.cs: Add OutputParamSizeTest1-4 to test size/value
  64. validation exception.
  65. 2007-03-14 Nagappan A <[email protected]>
  66. * SqlCommandTest.cs (ExecuteScalarTest, ExecuteReaderTest)
  67. (ExecuteReaderTest, PrepareTest, TransactionTest): Modified
  68. expected exception to NullReferenceException as it has to be
  69. thrown in 2.0 profile.
  70. 2007-03-09 Andreia Gaita <[email protected]>
  71. * SqlCommandTest.cs: Add new test to check string parameters with
  72. value = null and size 0. Fixed tests for NET 2.0 (different exceptions
  73. thrown)
  74. 2007-03-09 Andreia Gaita <[email protected]>
  75. * SqlCommandTest.cs: Add parameterized stored procedure call tests
  76. to ExecuteScalar and ExecuteNonQuery.
  77. 2007-01-08 Nagappan A <[email protected]>
  78. * SqlCommandBuilderTest.cs (GetInsertCommandTest)
  79. (GetInsertCommandTestWithExpression, GetUpdateCommandTest): Fixed
  80. NET 2.0 based test conditions.
  81. (GetUpdateCommandBoolTest): Added new test case.
  82. (GetUpdateCommandTest_CheckNonUpdatableColumns): Fixed NET 2.0
  83. based test conditions.
  84. (GetUpdateCommandBoolTest_CheckNonUpdatableColumns): Added new test
  85. case.
  86. (GetUpdateDeleteCommandBoolTest_CheckParameters): Added new test
  87. case.
  88. (GetUpdateCommandDBConcurrencyExceptionTest): Fixed NET 2.0 based
  89. test conditions.
  90. * SqlDataAdapterTest.cs: Commented not working test-cases.
  91. 2006-12-20 Nagappan A <[email protected]>
  92. * SqlDataAdapterTest.cs (SqlDataAdapterInheritTest): Implemented
  93. new class to verify protected method of DbDataAdapter.
  94. * Fixed existing test-cases to work with 2.0 profile.
  95. 2006-12-05 Nagappan A <[email protected]>
  96. * SqlDataAdapterTest.cs (CreateViewSSPITest): To test create view
  97. of SqlClient.
  98. 2006-08-30 Nagappan A <[email protected]>
  99. * SqlConnectionTest.cs: SqlConnection.GetSchema testcases
  100. 2006-05-26 Senganal T <[email protected]>
  101. * SqlParameterTest.cs : Test if Parameter Type is inferred correctly
  102. when Value is null or DBNull. Also, if Type is not explicitly set,
  103. test if it is inferred from the value of the parameter evertime the
  104. value is set.
  105. 2006-04-18 Senganal T <[email protected]>
  106. * SqlConnectionTest.cs :
  107. - OpenTest_1 : test InvalidOperationException is raised if
  108. ConnectionString is empty
  109. - DisposeTest : test nullreference exception is not raised
  110. 2006-04-07 Senganal T <[email protected]>
  111. * SqlDataAdapterTest,cs :
  112. - Added testcase for #78010
  113. 2006-04-07 Senganal T <[email protected]>
  114. * SqlCommandBuilderTest.cs :
  115. - Corrected the testcase to check for queries corresponding to
  116. ms.net 2.0
  117. - verify that columns that do not allow nulls are not included
  118. in the null-checks.
  119. - Added testcase to check for DBConcurrencyException for
  120. Delete Command.
  121. - Check the DataType of the null-check parameters
  122. 2006-03-08 Senganal T <[email protected]>
  123. * SqlCommandBuilderTest.cs :
  124. - Added testcase to verify UpdateCommand created with AutoIncrement
  125. columns.
  126. 2006-02-13 Senganal T <[email protected]>
  127. * SqlAdapterTest.cs : Added testcases for verifying FillError Behavior
  128. 2006-02-13 Senganal T <[email protected]>
  129. * SqlAdapterTest.cs : Added testcases for #77480
  130. 2006-02-10 Senganal T <[email protected]>
  131. * SqlDataReaderTest.cs : Added more tests to verify Sequential
  132. reading of row data.
  133. 2006-02-05 Senganal T <[email protected]>
  134. * SqlParameterTest.cs : New : Testcase for bug #77410
  135. 2006-01-17 Senganal T <[email protected]>
  136. * SqlCommandBuilderTest.cs : corrected a failing testcase
  137. 2006-01-17 Senganal T <[email protected]>
  138. * SqlCommandBuilderTest.cs : Added testcase for bug #77225
  139. 2005-12-03 Senganal T <[email protected]>
  140. * SqlCommandTest.cs : Added testcase for bug #76880
  141. 2005-11-23 Senganal T <[email protected]>
  142. * SqlCommandTest.cs : Added testcases for bug #76778
  143. 2005-10-27 Senganal T <[email protected]>
  144. * SqlCommandTest.cs : Added Testcase for bug #75698
  145. 2005-10-17 Senganal T <[email protected]>
  146. * SqlDataAdapterTest.cs : Added Testcase for bug #76433.
  147. 2005-09-24 Sureshkumar T <[email protected]>
  148. * SqlDataAdapterTest.cs (Fill_Test_Exceptions): passing null
  149. dataset name throws ArgumentNullException in ms.net
  150. * SqlConnectionTest.cs: HostName compare: convert to uppercase.
  151. * SqlDataReaderTest.cs: remove Opening connection in few test
  152. cases as it was done in SetUp.
  153. - id type change changes
  154. 2005-09-21 Senganal T <[email protected]>
  155. * SqlConnectionTest.cs: removed some hardcoded database names
  156. in DatabasePropertyTest ().
  157. 2005-09-16 Senganal T <[email protected]>
  158. * SqlCommandTest.cs: added more testcases for connected mode
  159. * SqlConnectionTest.cs: added more testcases for connected mode
  160. * SqlDataAdapterTest.cs: added more testcases for connected mode
  161. * SqlDataReaderTest.cs: added more testcases for connected mode
  162. 2005-09-01 Sureshkumar T <[email protected]>
  163. * SqlCommandBuilderTest.cs: added tests for SqlCommandBuilder
  164. * SqlCommandTest.cs: pulled from Test/System.Data.SqlClient
  165. * SqlConnectionStringBuilderTest.cs: pulled from Test/System.Data.SqlClient
  166. * SqlConnectionTest.cs: pulled from Test/System.Data.SqlClient
  167. * SqlDataAdapterTest.cs: pulled from Test/System.Data.SqlClient
  168. * SqlDataReaderTest.cs: pulled from Test/System.Data.SqlClient
  169. * SqlTransactionTest.cs: pulled from Test/System.Data.SqlClient
  170. Added attribute Category ("sqlserver") to all these test fixtures.