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