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