| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254 |
- 2007-06-07 Nagappan A <[email protected]>
- * SqlCommandTest.cs: Fixes compilation warnings.
- 2007-05-30 Nagappan A <[email protected]>
- * SqlCommandTest.cs (StoredProc_NoParameterTest)
- (StoredProc_ParameterTest, rpc_helper_function): Added new methods
- to test the implementation of TDS RPC.
- 2007-04-03 Amit Biswas <[email protected]>
- * SqlDataReaderTest.cs (GetSqlBytesTest): Test case for GetSqlBytes
- (GetProviderSpecificFieldTypeTest): Test case for GetProviderSpecificFieldTypeTest
- (GetProviderSpecificValueTest): Test case for GetProviderSpecificValueTest
- (GetProviderSpecificValueLowerBoundaryTest):
- (GetProviderSpecificValueUpperBoundaryTest):
- (GetProviderSpecificValuesTest): Test case for GetProviderSpecificValuesTest
- (GetProviderSpecificValuesSmallArrayTest): Test case with an array smaller than no. of columns
- (GetProviderSpecificValuesLargeArrayTest): Test case with an array larger than no. of columns
- (GetProviderSpecificValuesNullTest): Test case for null parameters
- * SqlParameterTest.cs (XmlSchemaTest): Test case for properties related to XML schema
- (SourceColumnNullMappingTest): Test case for SourceColumnNullMappingTest
- (ctor7Test): Test case to the constructor new in .net 2.0
- * SqlParameterTest.cs (ParameterType): Corrected a bug in the test case regarding
- default values of SqlDbType and DbType
- (SqlDbTypeTest): Test for SqlDbType and DbType properties
- (ResetSqlDbTypeTest): Test for ResetSqlDbType method
- (ResetDbTypeTest): Test for ResetDbType method
- * SqlParameterCollectionTest.cs (CopyToTest): Test case for CopyTo method
- 2007-03-23 Nidhi Rawal <[email protected]>
- * SqlCommandTest.cs (BeginExecuteXmlReaderTest): Written test case for the method
- BeginExecuteXmlReader.
- (BeginExecuteXmlReaderExceptionTest): Written test case for the method BeginExecuteXmlReader
- to check for InvalidOperationException.
- (CloneObjTest): Written test case for the method Clone.
-
- * SqlConnectionTest.cs (ChangePasswordNullConnStringTest): Written test case for the method
- ChangePassword to check for null connection string.
- (ChangePasswordNullPasswordTest): Written test case for the method ChangePassword to check for
- null new password.
- (ChangePasswordEmptyPasswordTest): Written test case for the method ChangePassword to check for
- password as empty string.
- (ChangePasswordExceedPasswordTest): Written test case for the method ChangePassword to check
- if the password exceeds its permitted size.
-
- * SqlClientFactory.cs: Created the class.
- (CreatePermissionTest): Added a test case for the method CreatePermission.
- 2007-03-20 Nidhi Rawal <[email protected]>
- * SqlConnectionStringBuilderTest.cs: Fixed the bug by including the
- category sqlserver, in the absence of which none of the test-cases
- were executing.
- (TrustServerCertificateTest): Written test-case for the property TrustServerCertificate.
- (TypeSystemVersionTest): Written test-case for the property TypeSystemVersion.
- (UserInstanceTest): Written test-case for the property UserInstance.
- (SettingUserInstanceTest): Written test-case for checking the connection string after
- assigning the value for keyword User Instance.
- (ContextConnectionTest): Written test-case for the property ContextConnection.
- (SettingContextConnectionTest): Written test-case for checking the connection string after
- assigning the value for keyword Context Connection.
- * SqlCommandTest.cs (NotificationTest): Written test-case for property Notification.
- (NotificationAutoEnlistTest): Written the test-case for property NotificationAutoEnlist.
- * SqlConnectionTest.cs (FireInfoMessageEventOnUserErrorsTest): Written
- test-case for the property FireInfoMessageEventOnUserErrors.
- (StatisticsEnabledTest): Written test-case for the property StatisticsEnabled.
- * SqlDataAdapterTest.cs (UpdateBatchSizeTest): Written test-case for the
- property UpdateBatchSize.
- (UpdateBatchSizeArgumentOutOfRangeTest): Written test-case for the ArgumentOutOfRange
- exception for UpdateBatchSize property.
- 2007-03-19 Nidhi Rawal <[email protected]>
- * SqlParameterTest.cs (CompareInfoTest): Written the test case
- for property CompareInfo.
- (LocaleIdTest): Written the test case for property LocaleId.
- (SqlValueTest): Written test case for property SqlValue.
- 2007-03-16 Andreia Gaita <[email protected]>
- * SqlCommandTest.cs: Add OutputParamSizeTest1-4 to test size/value
- validation exception.
- 2007-03-14 Nagappan A <[email protected]>
- * SqlCommandTest.cs (ExecuteScalarTest, ExecuteReaderTest)
- (ExecuteReaderTest, PrepareTest, TransactionTest): Modified
- expected exception to NullReferenceException as it has to be
- thrown in 2.0 profile.
- 2007-03-09 Andreia Gaita <[email protected]>
- * SqlCommandTest.cs: Add new test to check string parameters with
- value = null and size 0. Fixed tests for NET 2.0 (different exceptions
- thrown)
- 2007-03-09 Andreia Gaita <[email protected]>
- * SqlCommandTest.cs: Add parameterized stored procedure call tests
- to ExecuteScalar and ExecuteNonQuery.
- 2007-01-08 Nagappan A <[email protected]>
- * SqlCommandBuilderTest.cs (GetInsertCommandTest)
- (GetInsertCommandTestWithExpression, GetUpdateCommandTest): Fixed
- NET 2.0 based test conditions.
- (GetUpdateCommandBoolTest): Added new test case.
- (GetUpdateCommandTest_CheckNonUpdatableColumns): Fixed NET 2.0
- based test conditions.
- (GetUpdateCommandBoolTest_CheckNonUpdatableColumns): Added new test
- case.
- (GetUpdateDeleteCommandBoolTest_CheckParameters): Added new test
- case.
- (GetUpdateCommandDBConcurrencyExceptionTest): Fixed NET 2.0 based
- test conditions.
- * SqlDataAdapterTest.cs: Commented not working test-cases.
- 2006-12-20 Nagappan A <[email protected]>
- * SqlDataAdapterTest.cs (SqlDataAdapterInheritTest): Implemented
- new class to verify protected method of DbDataAdapter.
- * Fixed existing test-cases to work with 2.0 profile.
- 2006-12-05 Nagappan A <[email protected]>
- * SqlDataAdapterTest.cs (CreateViewSSPITest): To test create view
- of SqlClient.
- 2006-08-30 Nagappan A <[email protected]>
- * SqlConnectionTest.cs: SqlConnection.GetSchema testcases
- 2006-05-26 Senganal T <[email protected]>
- * SqlParameterTest.cs : Test if Parameter Type is inferred correctly
- when Value is null or DBNull. Also, if Type is not explicitly set,
- test if it is inferred from the value of the parameter evertime the
- value is set.
-
- 2006-04-18 Senganal T <[email protected]>
- * SqlConnectionTest.cs :
- - OpenTest_1 : test InvalidOperationException is raised if
- ConnectionString is empty
- - DisposeTest : test nullreference exception is not raised
- 2006-04-07 Senganal T <[email protected]>
- * SqlDataAdapterTest,cs :
- - Added testcase for #78010
- 2006-04-07 Senganal T <[email protected]>
- * SqlCommandBuilderTest.cs :
- - Corrected the testcase to check for queries corresponding to
- ms.net 2.0
- - verify that columns that do not allow nulls are not included
- in the null-checks.
- - Added testcase to check for DBConcurrencyException for
- Delete Command.
- - Check the DataType of the null-check parameters
- 2006-03-08 Senganal T <[email protected]>
- * SqlCommandBuilderTest.cs :
- - Added testcase to verify UpdateCommand created with AutoIncrement
- columns.
- 2006-02-13 Senganal T <[email protected]>
- * SqlAdapterTest.cs : Added testcases for verifying FillError Behavior
- 2006-02-13 Senganal T <[email protected]>
- * SqlAdapterTest.cs : Added testcases for #77480
- 2006-02-10 Senganal T <[email protected]>
- * SqlDataReaderTest.cs : Added more tests to verify Sequential
- reading of row data.
- 2006-02-05 Senganal T <[email protected]>
- * SqlParameterTest.cs : New : Testcase for bug #77410
- 2006-01-17 Senganal T <[email protected]>
- * SqlCommandBuilderTest.cs : corrected a failing testcase
- 2006-01-17 Senganal T <[email protected]>
- * SqlCommandBuilderTest.cs : Added testcase for bug #77225
- 2005-12-03 Senganal T <[email protected]>
- * SqlCommandTest.cs : Added testcase for bug #76880
- 2005-11-23 Senganal T <[email protected]>
- * SqlCommandTest.cs : Added testcases for bug #76778
- 2005-10-27 Senganal T <[email protected]>
- * SqlCommandTest.cs : Added Testcase for bug #75698
- 2005-10-17 Senganal T <[email protected]>
- * SqlDataAdapterTest.cs : Added Testcase for bug #76433.
- 2005-09-24 Sureshkumar T <[email protected]>
- * SqlDataAdapterTest.cs (Fill_Test_Exceptions): passing null
- dataset name throws ArgumentNullException in ms.net
- * SqlConnectionTest.cs: HostName compare: convert to uppercase.
- * SqlDataReaderTest.cs: remove Opening connection in few test
- cases as it was done in SetUp.
- - id type change changes
- 2005-09-21 Senganal T <[email protected]>
- * SqlConnectionTest.cs: removed some hardcoded database names
- in DatabasePropertyTest ().
- 2005-09-16 Senganal T <[email protected]>
- * SqlCommandTest.cs: added more testcases for connected mode
- * SqlConnectionTest.cs: added more testcases for connected mode
- * SqlDataAdapterTest.cs: added more testcases for connected mode
- * SqlDataReaderTest.cs: added more testcases for connected mode
- 2005-09-01 Sureshkumar T <[email protected]>
- * SqlCommandBuilderTest.cs: added tests for SqlCommandBuilder
- * SqlCommandTest.cs: pulled from Test/System.Data.SqlClient
- * SqlConnectionStringBuilderTest.cs: pulled from Test/System.Data.SqlClient
- * SqlConnectionTest.cs: pulled from Test/System.Data.SqlClient
- * SqlDataAdapterTest.cs: pulled from Test/System.Data.SqlClient
- * SqlDataReaderTest.cs: pulled from Test/System.Data.SqlClient
- * SqlTransactionTest.cs: pulled from Test/System.Data.SqlClient
- Added attribute Category ("sqlserver") to all these test fixtures.
|