ChangeLog 3.0 KB

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