| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- 2007-03-08 Gert Driesen <[email protected]>
- * ComparerTest.cs: Added test for bug #80929. Added tests to verify
- binary serialization compatibility.
- * IListTest.cs: Fixed header.
- 2007-03-07 Gert Driesen <[email protected]>
- * IListTest.cs: Added test for bug #80260.
- 2006-09-12 Gert Driesen <[email protected]>
- * ListTest.cs: Added tests for binary serialization, and Enumerator
- version checks.
- 2006-05-08 Atsushi Enomoto <[email protected]>
- * ListTest.cs : test for bug #77277 by Kazuki Oikawa.
- 2006-03-16 Ankit Jain <[email protected]>
- * ListTest.cs: Add some tests for InsertRange.
- 2006-01-23 Raja R Harinath <[email protected]>
- * DictionaryTest.cs (IDictionary_*): Add a few tests for the
- IDictionary explicit implementation.
- 2006-01-19 Raja R Harinath <[email protected]>
- * DictionaryTest.cs: Remove NotWorking annotations.
- (Empty_CopyTo, Empty_Values_CopyTo): Fix tests to check that
- CopyTo from an empty dictionary does not throw an exception when
- 'index==array.Length'.
- (PlainEnumeratorReturnTest): Check the type of 'Entry' property too.
- 2006-01-19 Atsushi Enomoto <[email protected]>
- * DictionaryTest.cs : fixed several tests to not fail under .NET 2.0
- and thus marked some as NotWorking. Numbered some assertions.
- 2005-12-21 Sebastien Pouliot <[email protected]>
- * ListTest.cs: Added test cases for #77039 for sorting a list with
- IComparable (generic or not) and without IComparable (exception).
- 2005-12-20 Sebastien Pouliot <[email protected]>
- * ListTest.cs: Added test case for #76361 for sorting the list with a
- generic comparer.
- 2005-12-19 Sebastien Pouliot <[email protected]>
- * DictionaryTest.cs: Added test cases for CopyTo, including a test for
- DictionaryEntry.
- * ListTest.cs: Added test case for #77019 when copying from an empty
- dictionary.
- 2005-12-19 Sebastien Pouliot <[email protected]>
- * ListTest.cs: Added test case for a binary search with an empty list
- (bug #77030). Removed IsReadOnly test case as this isn't part of the
- public API anymore.
- 2005-08-16 Martin Baulig <[email protected]>
- * DictionaryTest.cs (IEnumeratorGenericTest): Reflect latest
- `KeyValuePair<K,V>' API changes.
- 2005-06-27 Raja R Harinath <[email protected]>
- * DictionaryTest.cs (FailFastTest1, FailFastTest2, FailFastTest3):
- New tests to ensure that enumerators are invalidated on
- modifications to the dictionary.
- 2005-06-22 Raja R Harinath <[email protected]>
- * DictionaryTest.cs (KeyValueEnumeratorTest): Add test for infloop
- if dictionary is read while it's being enumerated.
- 2005-06-20 David Waite <[email protected]>
- * ListTest.cs: Substantial new tests
- 2005-06-18 David Waite <[email protected]>
- * DictionaryTest.cs (AddTest3): Added test of simple interaction with
- struct dictionary
- (AddDuplicateTest,IndexerGetNullTest,IndexerSetNullTest): Added tests
- for exceptional cases to verify correct exceptions
- (TryGetValueTest): check return value from TryGetValue
- (KeyValueEnumeratorTest): Added test from verification of ms.net beta2
- behavior for non-generic IEnumerator/IDictionaryEnumerator behavior
- against Dictionary<>
- (SerializationTest): Added test to utilize serialization routines.
-
- 2005-06-16 Raja R Harinath <[email protected]>
- * DictionaryTest.cs (SliceCollectionsEnumeratorTest): New test
- based on #75053.
- 2005-06-07 Ankit Jain <[email protected]>
- * DictionaryTest.cs (KeyValueEnumeratorTest): Added new test.
-
- 2005-05-19 Raja R Harinath <[email protected]>
- * ListTest.cs (TestGetRange): Add missing ';'. Actually compare
- the length of the list.
- 2005-05-18 Miguel de Icaza <[email protected]>
- * ListTest.cs: Added.
- 2005-05-13 Atsushi Enomoto <[email protected]>
- * QueueTest.cs, StackTest.cs: They are now in System.dll
- 2005-05-05 Raja R Harinath <[email protected]>
- * DictionaryTest.cs (MyTest.GetHashCode): Add to silence a
- compiler warning.
- 2005-04-04 Raja R Harinath <[email protected]>
- * DictionaryTest.cs: Update.
- 2005-04-02 Ben Maurer <[email protected]>
- * DictionaryTest.cs: new test.
- 2005-01-29 Ben Maurer <[email protected]>
- * QueueTest.cs: new Test.
- 2004-12-27 Ben Maurer <[email protected]>
- * StackTest.cs: new Test.
|