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