ChangeLog 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. 2002-05-27 Tim Coleman <[email protected]>
  2. * TestSqlDataAdapter.cs: remove explicit opening of connection.
  3. This should occur implicitly now.
  4. 2002-05-23 Daniel Morgan <[email protected]>
  5. * TestSqlParameters.cs: read and display the schema columns
  6. correctly
  7. 2002-05-16 Tim Coleman <[email protected]>
  8. * TestSqlDataAdapter.cs: Added the foreach loop to iterate through
  9. all of the DataRows in the DataSet table "Table", as the
  10. GetEnumerator method of InternalDataCollectionBase has now been
  11. implemented.
  12. 2002/05/17 Nick Drochak <[email protected]>
  13. * System.Data_test.build: Remove RunTests from the default build. We
  14. can add this later, but it keeps the build from breaking for now.
  15. * TestSqlDataAdapter.cs: Fix build breaker.
  16. 2002-05-11 Daniel Morgan <[email protected]>
  17. * Test/PostgresTest.cs: added call to PostgreSQL stored procedure
  18. version() which returns the version of the PostgreSQL DBMS you
  19. are connected to. This works and I did not realize it. Thanks
  20. goes to Gonzalo.
  21. 2002-05-11 Daniel Morgan <[email protected]>
  22. * AllTests.cs: needed a using for System.Data and System.Data.SqlClient,
  23. changed SqlTypes.AllTests.Suite to System.Data.SqlTypes.AllTests.Suite
  24. * System.Data/DataColumnTest.cs: changed typeof to DataColumnTest
  25. 2002-05-10 Rodrigo Moya <[email protected]>
  26. * TestDataColumn.cs: removed.
  27. * System.Data_test.build: removed reference to TestDataColumn.
  28. * TheTests.cs: added RunDataColumnTest class.
  29. (RunAllTests.AddAllTests): added test for RunDataColumnTest.
  30. * System.Data/AllTests.cs: test suite for System.Data.
  31. * System.Data/DataColumnTest.cs: NUnit test for DataColumn.
  32. 2002-05-09 Daniel Morgan <[email protected]>
  33. * System.Data_test.build: exclude file TestDataColumn.cs
  34. test.build files have two places where a file needs to
  35. be excluded
  36. 2002-05-06 Daniel Morgan <[email protected]>
  37. * System.Data.SqlTypes.SqlInt32Test.cs: missing
  38. declaration for SqlInt32 z which was a test build blocker
  39. * PostgresTest.cs: got rid of warning about missing e
  40. * Test/PostgresTest.cs: exclude PostgresTest.cs
  41. from test build
  42. 2002-05-05 Tim Coleman <[email protected]>
  43. * TheTests.cs:
  44. * System.Data.SqlTypes/SqlInt32Test.cs:
  45. More test cases for System.Data.SqlTypes.SqlInt32
  46. 2002-05-03 Tim Coleman <[email protected]>
  47. * Added ChangeLog to test dir
  48. * Added NUnit framework necessary for make test
  49. * Added subdirectory for System.Data.SqlTypes
  50. * New files:
  51. ChangeLog
  52. AllTests.cs
  53. TheTests.cs
  54. System.Data_test.build
  55. System.Data.SqlTypes
  56. System.Data.SqlTypes/AllTests.cs
  57. System.Data.SqlTypes/SqlInt32Test.cs