2008-06-16 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
[mono.git] / mcs / class / corlib / Test / System.Collections.Generic / ChangeLog
1 2008-06-16  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
2
3         * DictionaryTest.cs: Add test for an incompatibility
4
5 2008-04-30  Gert Driesen  <drieseng@users.sourceforge.net>
6
7         * DictionaryTest.cs: Added not working tests for bug #384723. Spaces
8         to tabs.
9
10 2008-03-21  Sebastien Pouliot  <sebastien@ximian.com>
11
12         * EqualityComparerTest.cs: New. Add test cases for using null with 
13         GetHashCode (bug #372892).
14
15 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
16
17         * ListTest.cs: Make some tests public.
18
19 2007-11-05  Sebastien Pouliot  <sebastien@ximian.com>
20
21         * DictionaryTest.cs: Test case for #322783 based on Francisco Moraes
22         sample code.
23
24 2006-04-16  Jonathan Chambers  <joncham@gmail.com>
25
26         * ListTest.cs: Test Contains after Remove. 
27         Test for bug #81387.
28
29 2007-03-08  Gert Driesen  <drieseng@users.sourceforge.net>
30
31         * ComparerTest.cs: Added test for bug #80929. Added tests to verify
32         binary serialization compatibility.
33         * IListTest.cs: Fixed header.
34
35 2007-03-07  Gert Driesen  <drieseng@users.sourceforge.net>
36
37         * IListTest.cs: Added test for bug #80260.
38
39 2006-09-12  Gert Driesen  <drieseng@users.sourceforge.net>
40
41         * ListTest.cs: Added tests for binary serialization, and Enumerator
42         version checks.
43
44 2006-05-08  Atsushi Enomoto  <atsushi@ximian.com>
45
46         * ListTest.cs : test for bug #77277 by Kazuki Oikawa.
47
48 2006-03-16  Ankit Jain  <jankit@novell.com>
49
50         * ListTest.cs: Add some tests for InsertRange.
51
52 2006-01-23  Raja R Harinath  <rharinath@novell.com>
53
54         * DictionaryTest.cs (IDictionary_*): Add a few tests for the
55         IDictionary explicit implementation.
56
57 2006-01-19  Raja R Harinath  <rharinath@novell.com>
58
59         * DictionaryTest.cs: Remove NotWorking annotations.
60         (Empty_CopyTo, Empty_Values_CopyTo): Fix tests to check that
61         CopyTo from an empty dictionary does not throw an exception when
62         'index==array.Length'.
63         (PlainEnumeratorReturnTest): Check the type of 'Entry' property too.
64
65 2006-01-19  Atsushi Enomoto  <atsushi@ximian.com>
66
67         * DictionaryTest.cs : fixed several tests to not fail under .NET 2.0
68           and thus marked some as NotWorking. Numbered some assertions.
69
70 2005-12-21  Sebastien Pouliot  <sebastien@ximian.com>
71
72         * ListTest.cs: Added test cases for #77039 for sorting a list with
73         IComparable (generic or not) and without IComparable (exception).
74
75 2005-12-20  Sebastien Pouliot  <sebastien@ximian.com>
76
77         * ListTest.cs: Added test case for #76361 for sorting the list with a
78         generic comparer.
79
80 2005-12-19  Sebastien Pouliot  <sebastien@ximian.com>
81
82         * DictionaryTest.cs: Added test cases for CopyTo, including a test for
83         DictionaryEntry.
84         * ListTest.cs: Added test case for #77019 when copying from an empty 
85         dictionary.
86
87 2005-12-19  Sebastien Pouliot  <sebastien@ximian.com>
88
89         * ListTest.cs: Added test case for a binary search with an empty list
90         (bug #77030). Removed IsReadOnly test case as this isn't part of the 
91         public API anymore.
92
93 2005-08-16  Martin Baulig  <martin@ximian.com>
94
95         * DictionaryTest.cs (IEnumeratorGenericTest): Reflect latest
96         `KeyValuePair<K,V>' API changes.
97
98 2005-06-27  Raja R Harinath  <rharinath@novell.com>
99
100         * DictionaryTest.cs (FailFastTest1, FailFastTest2, FailFastTest3):
101         New tests to ensure that enumerators are invalidated on
102         modifications to the dictionary.
103
104 2005-06-22  Raja R Harinath  <rharinath@novell.com>
105
106         * DictionaryTest.cs (KeyValueEnumeratorTest): Add test for infloop
107         if dictionary is read while it's being enumerated.
108
109 2005-06-20  David Waite  <mass@akuma.org>
110
111         * ListTest.cs: Substantial new tests
112
113 2005-06-18  David Waite  <mass@akuma.org>
114
115         * DictionaryTest.cs (AddTest3): Added test of simple interaction with
116         struct dictionary
117         (AddDuplicateTest,IndexerGetNullTest,IndexerSetNullTest): Added tests
118         for exceptional cases to verify correct exceptions
119         (TryGetValueTest): check return value from TryGetValue
120         (KeyValueEnumeratorTest): Added test from verification of ms.net beta2
121         behavior for non-generic IEnumerator/IDictionaryEnumerator behavior
122         against Dictionary<>
123         (SerializationTest): Added test to utilize serialization routines.
124     
125 2005-06-16  Raja R Harinath  <rharinath@novell.com>
126
127         * DictionaryTest.cs (SliceCollectionsEnumeratorTest): New test
128         based on #75053.
129
130 2005-06-07  Ankit Jain <ankit@corewars.org>
131
132         * DictionaryTest.cs (KeyValueEnumeratorTest): Added new test.
133         
134 2005-05-19  Raja R Harinath  <rharinath@novell.com>
135
136         * ListTest.cs (TestGetRange): Add missing ';'.  Actually compare
137         the length of the list.
138
139 2005-05-18  Miguel de Icaza  <miguel@novell.com>
140
141         * ListTest.cs: Added.
142
143 2005-05-13  Atsushi Enomoto  <atsushi@ximian.com>
144
145         * QueueTest.cs, StackTest.cs: They are now in System.dll
146
147 2005-05-05  Raja R Harinath  <rharinath@novell.com>
148
149         * DictionaryTest.cs (MyTest.GetHashCode): Add to silence a
150         compiler warning.
151
152 2005-04-04  Raja R Harinath  <rharinath@novell.com>
153
154         * DictionaryTest.cs: Update.
155
156 2005-04-02  Ben Maurer  <bmaurer@ximian.com>
157
158         * DictionaryTest.cs: new test.
159
160 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
161
162         * QueueTest.cs: new Test.
163
164 2004-12-27  Ben Maurer  <bmaurer@ximian.com>
165
166         * StackTest.cs: new Test.
167