1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
|
2009-07-13 Atsushi Enomoto <atsushi@ximian.com>
* OdbcDataReaderTest.cs : migration to newer nunit style.
2009-01-18 Gert Driesen <drieseng@users.sourceforge.net>
* OdbcCommandTest.cs: Added tests for CommandTimeout,
UpdatedRowSource, Dispose and ResetCommandTimeout. Added
ExecuteNonQuery/ExecuteReader/ExecuteScalar tests for a connection
that is not initialized or closed.
2009-01-03 Gert Driesen <drieseng@users.sourceforge.net>
* OdbcCommandBuilderTest.cs: Enabled test for QuoteIdentifier.
2008-12-30 Gert Driesen <drieseng@users.sourceforge.net>
* OdbcCommandBuilderTest.cs: Added tests for properties.
2008-12-30 Gert Driesen <drieseng@users.sourceforge.net>
* OdbcCommandBuilder.cs: Added test for ConflictOption default value.
2008-12-29 Gert Driesen <drieseng@users.sourceforge.net>
* OdbcCommandBuilderTest.cs: Added tests for QuotePrefix and
QuoteSuffix. Added tests for QuoteIdentifier (some still marked
NotWorking).
* OdbcConnectionStringBuilderTest.cs: Moved from ProviderTests.
Added and improved tests.
2008-08-26 Veerapuram Varadhan <vvaradhan@novell.com>
* OdbcParameterTest.cs (OdbcTypeTest): Added test case for Binary
type check.
2008-07-03 Gert Driesen <drieseng@users.sourceforge.net>
* OdbcDataAdapterTest.cs: Added test for UpdateBatchSize.
2008-03-03 Ankit Jain <jankit@novell.com>
* OdbcMetaDataCollectionNamesTest.cs: New.
2007-10-21 Gert Driesen <drieseng@users.sourceforge.net>
* OdbcDataAdapterTest.cs: Added tests for ctors, DeleteCommand,
InsertCommand, SelectCommand, UpdateCommand and Dispose.
* OdbcDataReaderTest.cs: fixed line endings.
* OdbcCommandTest.cs: Added tests for ctors and CommantText.
* OdbcConnectionTest.cs: Removed original test that relied on MySQL.
Added ctor tests. Added tests for BeginTransaction, GetSchema and
ServerVersion with connection that is closed.
2007-06-08 Nagappan A <anagappan@novell.com>
* OdbcParameterTest.cs (OdbcTypeTest): The default data type of
OdbcParameter is changed to NVarChar.
2005-10-08 Sureshkumar T <tsureshkumar@novell.com>
* OdbcParameterTest.cs (OdbcTypeTest): Disconnected Tests for
OdbcParameter class.
2005-09-22 Sebastien Pouliot <sebastien@ximian.com>
* OdbcPermissionAttributeTest.cs: Removed *Choice security actions.
2005-09-01 Sureshkumar T <tsureshkumar@novell.com>
* OdbcDataAdapterTest.cs: moved to ProviderTests and integrated
with connected more framework.
* OdbcCommandTest.cs: -- do --.
* OdbcParameterCollectionTest.cs: Removed ParameterLengthTrimTest
to ProviderTests.
2005-02-15 Sureshkumar T <tsureshkumar@novell.com>
* OdbcParameterCollectionTest.cs: fix for namespace collision
MonoTests.System & corlib System.
* OdbcDataReaderTest.cs: --do--
2005-01-14 Atsushi Enomoto <atsushi@ximian.com>
* OdbcPermissionTest.cs, OdbcPermissionAttributeTest.cs:
Fixed some incompatible type of exception between 2.0 and 1.1.
2004-11-26 Sureshkumar T <tsureshkumar@novell.com>
* OdbcParameterCollectionTest.cs: New file for testing
OdbcParameterCollection's Add method.
2004-09-15 Sebastien Pouliot <sebastien@ximian.com>
* OdbcPermissionTest.cs: New. Unit tests for OdbcPermission.
2004-09-13 Sebastien Pouliot <sebastien@ximian.com>
* OdbcPermissionAttributeTest.cs: New. Unit tests for OdbcPermission
Attribute.
2004-08-31 Umadevi S <sumadevi@novell.com>
* OdbcDataReaderTest.cs - Added a test for Numeric Type
2004-08-27 Sureshkumar T <tsureshkumar@novell.com>
* OdbcDataReader.cs - Added a test for TinyInt
2004-08-26 Sureshkumar T <tsureshkumar@novell.com>
* OdbcDataReaderTest.cs - Added a test for DateTime - GetDateTimeTest
* OdbcCommandTest.cs - Syntax Error Fix
2004-07-29 Umadevi S <sumadevi@novell.com>
* OdbcCommandTest.cs - Added testcase for bug 62046. ExecuteNonQuery
2004-07-28 Umadevi S <sumadevi@novell.com>
* OdbcCommandTest.cs - Added testcase for bug 61968. String values passed with quotes
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.
* New files:
OdbcConnectionTest.cs - test suite for OdbcConnection class.
2004-06-16 Sureshkumar T <TSureshkumar@novell.com>
* Added Odbc tests using MySql test database
* New files:
ChangeLog
OdbcDataReaderTest.cs - test suite for OdbcDataReader class.
OdbcDataAdapterTest.cs - test suite for OdbcDataAdapter class.
|