ChangeLog 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. 2007-03-08 Gert Driesen <[email protected]>
  2. * ComparerTest.cs: Added test for bug #80929. Added tests to verify
  3. binary serialization compatibility.
  4. * IListTest.cs: Fixed header.
  5. 2007-03-07 Gert Driesen <[email protected]>
  6. * IListTest.cs: Added test for bug #80260.
  7. 2006-09-12 Gert Driesen <[email protected]>
  8. * ListTest.cs: Added tests for binary serialization, and Enumerator
  9. version checks.
  10. 2006-05-08 Atsushi Enomoto <[email protected]>
  11. * ListTest.cs : test for bug #77277 by Kazuki Oikawa.
  12. 2006-03-16 Ankit Jain <[email protected]>
  13. * ListTest.cs: Add some tests for InsertRange.
  14. 2006-01-23 Raja R Harinath <[email protected]>
  15. * DictionaryTest.cs (IDictionary_*): Add a few tests for the
  16. IDictionary explicit implementation.
  17. 2006-01-19 Raja R Harinath <[email protected]>
  18. * DictionaryTest.cs: Remove NotWorking annotations.
  19. (Empty_CopyTo, Empty_Values_CopyTo): Fix tests to check that
  20. CopyTo from an empty dictionary does not throw an exception when
  21. 'index==array.Length'.
  22. (PlainEnumeratorReturnTest): Check the type of 'Entry' property too.
  23. 2006-01-19 Atsushi Enomoto <[email protected]>
  24. * DictionaryTest.cs : fixed several tests to not fail under .NET 2.0
  25. and thus marked some as NotWorking. Numbered some assertions.
  26. 2005-12-21 Sebastien Pouliot <[email protected]>
  27. * ListTest.cs: Added test cases for #77039 for sorting a list with
  28. IComparable (generic or not) and without IComparable (exception).
  29. 2005-12-20 Sebastien Pouliot <[email protected]>
  30. * ListTest.cs: Added test case for #76361 for sorting the list with a
  31. generic comparer.
  32. 2005-12-19 Sebastien Pouliot <[email protected]>
  33. * DictionaryTest.cs: Added test cases for CopyTo, including a test for
  34. DictionaryEntry.
  35. * ListTest.cs: Added test case for #77019 when copying from an empty
  36. dictionary.
  37. 2005-12-19 Sebastien Pouliot <[email protected]>
  38. * ListTest.cs: Added test case for a binary search with an empty list
  39. (bug #77030). Removed IsReadOnly test case as this isn't part of the
  40. public API anymore.
  41. 2005-08-16 Martin Baulig <[email protected]>
  42. * DictionaryTest.cs (IEnumeratorGenericTest): Reflect latest
  43. `KeyValuePair<K,V>' API changes.
  44. 2005-06-27 Raja R Harinath <[email protected]>
  45. * DictionaryTest.cs (FailFastTest1, FailFastTest2, FailFastTest3):
  46. New tests to ensure that enumerators are invalidated on
  47. modifications to the dictionary.
  48. 2005-06-22 Raja R Harinath <[email protected]>
  49. * DictionaryTest.cs (KeyValueEnumeratorTest): Add test for infloop
  50. if dictionary is read while it's being enumerated.
  51. 2005-06-20 David Waite <[email protected]>
  52. * ListTest.cs: Substantial new tests
  53. 2005-06-18 David Waite <[email protected]>
  54. * DictionaryTest.cs (AddTest3): Added test of simple interaction with
  55. struct dictionary
  56. (AddDuplicateTest,IndexerGetNullTest,IndexerSetNullTest): Added tests
  57. for exceptional cases to verify correct exceptions
  58. (TryGetValueTest): check return value from TryGetValue
  59. (KeyValueEnumeratorTest): Added test from verification of ms.net beta2
  60. behavior for non-generic IEnumerator/IDictionaryEnumerator behavior
  61. against Dictionary<>
  62. (SerializationTest): Added test to utilize serialization routines.
  63. 2005-06-16 Raja R Harinath <[email protected]>
  64. * DictionaryTest.cs (SliceCollectionsEnumeratorTest): New test
  65. based on #75053.
  66. 2005-06-07 Ankit Jain <[email protected]>
  67. * DictionaryTest.cs (KeyValueEnumeratorTest): Added new test.
  68. 2005-05-19 Raja R Harinath <[email protected]>
  69. * ListTest.cs (TestGetRange): Add missing ';'. Actually compare
  70. the length of the list.
  71. 2005-05-18 Miguel de Icaza <[email protected]>
  72. * ListTest.cs: Added.
  73. 2005-05-13 Atsushi Enomoto <[email protected]>
  74. * QueueTest.cs, StackTest.cs: They are now in System.dll
  75. 2005-05-05 Raja R Harinath <[email protected]>
  76. * DictionaryTest.cs (MyTest.GetHashCode): Add to silence a
  77. compiler warning.
  78. 2005-04-04 Raja R Harinath <[email protected]>
  79. * DictionaryTest.cs: Update.
  80. 2005-04-02 Ben Maurer <[email protected]>
  81. * DictionaryTest.cs: new test.
  82. 2005-01-29 Ben Maurer <[email protected]>
  83. * QueueTest.cs: new Test.
  84. 2004-12-27 Ben Maurer <[email protected]>
  85. * StackTest.cs: new Test.