2006-01-04 Sebastien Pouliot <sebastien@ximian.com>
[mono.git] / mcs / class / corlib / Test / System.Collections / ChangeLog
1 2006-01-04  Sebastien Pouliot  <sebastien@ximian.com>
2
3         * HashtableTest.cs: Added test case to check if all subclasses are 
4         serializable.
5
6 2005-12-19  Sebastien Pouliot  <sebastien@ximian.com>
7
8         * ArrayListTest.cs: Added test cases for a binary search with an empty
9         list (bug #77030). Fixed other test cases so they execute without 
10         failures under MS 2.0.
11
12 2005-12-07  Sebastien Pouliot  <sebastien@ximian.com>
13
14         * SortedTestList.cs: Added more test for the constructor accepting an
15         IComparer and to avoid regression of bug #76750.
16
17 2005-12-06  Sebastien Pouliot  <sebastien@ximian.com>
18
19         * CaseInsensitiveHashCodeProviderTest: Added test cases for the 
20         default ctor, roudtripping serialization and deserializing data
21         generated on MS 1.1 and 2.0.
22
23 2005-12-05  Sebastien Pouliot  <sebastien@ximian.com>
24
25         * ComparerTest.cs: Removed "NotWorking" from "Invariant" test case 
26         (it's now working). Added new test cases for ISerializable (added in
27         SP1 and present in 2.0) and completed coverage with tests for ctor.
28
29 2005-09-01  Atsushi Enomoto  <atsushi@ximian.com>
30
31         * HashtableTest.cs : testcase for #75790.
32
33 2005-09-01  Atsushi Enomoto  <atsushi@ximian.com>
34
35         * SortedListTest.cs : testcase for #59694.
36
37 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
38
39         * ArrayListTest.cs: The patch below was not committed with the
40         same text as the patch on the bug. There was an s/1/3. Doing the
41         patch as specified on the bug makes buildbot work and the test
42         work on msft
43
44 2005-07-17  Florian Gross  <flgr@ccan.de>
45
46         * ArrayListTest.cs: Test for #75545.
47
48 2005-06-23  Ben Maurer  <bmaurer@ximian.com>
49
50         * QueueTest.cs, StackTest.cs: Test for #75369.
51
52 2005-05-26  Ben Maurer  <bmaurer@ximian.com>
53
54         * QueueTest.cs: New test.
55
56 2005-05-09  Atsushi Enomoto  <atsushi@ximian.com>
57
58         * StackTest.cs : test for CopyTo() on an empty stack.
59
60 2005-01-05  Nick Drochak  <ndrochak@ieee.org>
61
62         * ComparerTest.cs: Modernize and fix line endings. Test is failing with
63         mono, see if this change has any effect.
64
65 2004-12-16  Lluis Sanchez Gual  <lluis@novell.com>
66
67         * HashtableTest.cs: Added test for bug #70570.
68
69 2004-08-24 Nick Drochak <ndrochak@ieee.org>
70
71         
72
73         * ComparerTest.cs: On MS.NET 1.1 Compare("a", "A") returns < 0.
74         
75
76
77 2004-07-28  Dick Porter  <dick@ximian.com>
78
79         * ComparerTest.cs: Test for invariant compares (bug 61458.)
80
81 2004-06-14  Sebastien Pouliot  <sebastien@ximian.com>
82
83         * HashtableTest.cs: Added new case to CopyTo(Array,int) an empty 
84         hashtable.
85         * SortedListTest.cs: Un-ignored TestCapacity4 test case as it now 
86         works correctly under Mono.
87
88 2004-06-01  Sebastien Pouliot  <sebastien@ximian.com>
89
90         * SortedListTest.cs: Added new test when initial capacity is set to 0
91         (so it never returns to default, 16, when Capacity is set to 0) unless
92         Clear is called. Cleaned up unused SetUp/TearDown.
93
94 2004-05-31  Sebastien Pouliot  <sebastien@ximian.com>
95
96         * ArrayListTest.cs: Added new test for null in BinarySearch.
97         * HashtableTest.cs: Added null checking fro GetObjectData.
98
99 2004-05-27  Sebastien Pouliot  <sebastien@ximian.com>
100
101         * HashtableTest.cs: Added case where a cloned hashtable must also be
102         synchronized (if the original was).
103         * QueueTest.cs: Added case where we try to get Current after the last
104         MoveNext. Added case to ensure that MoveNext always return false 
105         (after the first time). Test for synchronized clones.
106         * SortedListTest.cs: Added cases for synchronized capacity and testing
107         the interface from the internal enumerator. Test that setting Capacity
108         to zero return the capacity to it's initial default (16).
109
110 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
111
112         * ArrayListTest.cs: Added tests for integer overflows.
113
114 2003-12-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
115
116         * QueueTest.cs: added more tests. Patch from Carlos Barcenilla.
117
118 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
119
120         * StackTest.cs: Applied patch from Carlos A. Barcenilla to fix minor
121         bugs (#50755).
122
123 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
124
125         * HashtableTest.cs: patch from Carlos A.  Barcenilla
126         (barce@frlp.utn.edu.ar) that includes some fixes for Hashtable +
127         NUnit2 tests.
128
129 2003-10-07 Nick Drochak <ndrochak@gol.com>
130
131         * DictionaryBaseTest.cs:
132         * NewArrayListTest.cs: Clean up warnings that were annoying me.
133
134 2003-08-12  Nick Drochak <ndrochak@gol.com>
135
136         * NewArrayListTest.cs: Disable part that was failing on .NET. Marked
137         with FIXME.
138
139 2003-08-11  Duncan Mak  <duncan@ximian.com>
140
141         * ArrayListTest.cs: Added test case submitted by Tum in bug #45036.
142
143         * DictionaryBaseTest.cs: added new test provided by Carlos Barcenilla
144         (barce@frlp.utn.edu.ar).
145
146 2003-08-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
147
148         * CollectionBaseTest.cs: added new test provided by Carlos Barcenilla
149         (barce@frlp.utn.edu.ar).
150
151 2003-08-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
152
153         * CollectionBaseTest.cs: added a few more tests. Now derives from
154         Assertion.
155
156 2003-06-20  Nick Drochak  <ndrochak@gol.com>
157
158         * SortedListTest.cs: Make it pass on .NET 1.1.
159
160 2003-06-14  Duncan Mak  <duncan@ximian.com>
161
162         * SortedListTest.cs
163         (TestIndexer):
164         (TestEnumerator): Incorporated these two tests from Philippe
165         Lavoie <philippe.lavoie@cactus.ca>.
166
167 2003-06-12  Duncan Mak  <duncan@ximian.com>
168
169         * HashtableTest.cs: Converted it to the new style of NUnit tests.
170
171         (TestCtor3): 
172         (TestCtor4): new tests for the constructor.
173
174 2003-06-11  Duncan Mak  <duncan@ximian.com>
175
176         * SortedListTest.cs: Convert it to the new style of NUnit tests.
177
178         (TestCapacity2):
179         (TestCapacity3):
180         (TestCapacity4): new tests for the Capacity property.
181
182         (TestIndexOfValue2):
183         (TestIndexOfValue3): new tests for the IndexOfValue method.
184         
185 2003-06-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
186
187         * HashtableTest.cs: removed duplicate tests and unneeded inner class.
188
189 2003-06-07  Ben Maurer <bmaurer@users.sourceforge.net>
190         * StackTest.cs: Added test for Contains (null)
191
192 2003-05-13 Nick Drochak <ndrochak@gol.com>
193
194         * DictionaryEntry.cs: Added test
195
196 2003-05-03 Ben Maurer <bmaurer@users.sourceforge.net>
197         
198         * ArrayListTest.cs:
199                 Tests for the above* ArrayList.cs
200                 Added methods to support IList wrappers
201
202 2003-04-15  Eduardo Garcia Cebollero <kiwnix@yahoo.es>
203
204         * CaseInsensitiveComparerTest.cs: Added Some Tests.
205
206 2003-04-09  Ville Palo <vi64pa@kolumbus.fi>
207
208         * ArraListTest.cs: Added little test for Sort ().
209         
210 2003-02-15  Nick Drochak  <ndrochak@gol.com>
211
212         * CollectionBaseTest.cs: Make it a better NUnit v2 example
213
214 2003-02-15  Pedro Martínez Juliá  <yoros@wanadoo.es>
215
216         * HashtableTest.cs: Add serialization test.
217
218 2002-12-21  Nick Drochak <ndrochak@gol.com>
219
220         * all: make tests build and run under nunit2
221
222 2002-10-16  Nick Drochak  <ndrochak@gol.com>
223
224         * QueueTest.cs: Add test from tetsuo via Vladimir Vukicevic 
225         (vladimir@pobox.com).
226
227 2002-10-09  Nick Drochak  <ndrochak@gol.com>
228
229         * SortedListTest.cs: Re-enable test for IsSyncronized
230
231 2002-09-24  Nick Drochak  <ndrochak@gol.com>
232
233         * ArrayListTest.cs: Add test for InsertRange() for the case where an
234         ArrayList is passed to itself to be insterted.
235
236 2002-09-24  Nick Drochak  <ndrochak@gol.com>
237
238         * ArrayListTest.cs: Add check that enumerator is invalidated after a
239         method that changes the list, such as Add(), Remove(), etc.
240
241 2002-07-02  Nick Drochak  <ndrochak@gol.com>
242
243         * SortedListTest.cs: Fix some expected/actual value parameters for
244         AssertEquals().
245
246 2002-06-30  Nick Drochak  <ndrochak@gol.com>
247
248         * SortedListTest.cs: Fix some expected/actual value parameters in the
249         Assert()'s. Disable a part of test until the class is finished.
250
251 2002-06-25  Nick Drochak  <ndrochak@gol.com>
252
253         * QueueTest.cs: Trap some unexpected exceptions and add a bit of
254         verbosity to some assert messages.
255
256 2002-06-20  Nick Drochak  <ndrochak@gol.com>
257
258         * SortedListTest.cs: Make tests pass against ms.net.
259         * QueueTest.cs: Make tests pass against ms.net.
260
261 2002-06-19  Nick Drochak  <ndrochak@gol.com>
262
263         * AllTests.cs: Sort names and include missing tests.
264         * SortedListTest.cs: Change Console.WriteLine() into Fail().
265
266 2002-05-27  Nick Drochak  <ndrochak@gol.com>
267
268         * ArrayListTest.cs (TestLastIndexOf): Add try-catch block to report
269         where we are throwing.
270
271 2002-05-21  Lawrence Pit  <loz@cable.a2000.nl>
272
273         * ArrayListTest.cs: Added several tests to test for 0 capacity
274
275 2002-05-05  Nick Drochak  <ndrochak@gol.com>
276
277         * ArrayListTest.cs: Test for RankException when constructing from a 
278         multi-dimensional array. Confirmed behavior from MS.NET
279
280 2002-05-01  Nick Drochak  <ndrochak@gol.com>
281
282         * ArrayListTest.cs (TestBinarySearch) : accomodate possible bug in
283         .NET runtime.
284
285 2002/05/01  Nick Drochak <ndrochak@gol.com>
286
287         * ArrayListTest.cs (TestCopyTo) : Make assert messages unique and
288         avoid possible MS.NET bug when test is run on .NET.
289
290 2002/04/30  Nick Drochak <ndrochak@gol.com>
291
292         * ArrayListTest.cs (TestInsertRange) : Make assert messages unique.
293
294 2002-04-30  Nick Drochak  <ndrochak@gol.com>
295
296         * ArrayListTest.cs (TestTrimToSize): Change test so that it doesn't
297         rely on the specific timing of a capacity change.  Our corlib doubles
298         capacity sooner than the reference system does.
299
300 2002-04-30  Nick Drochak  <ndrochak@gol.com>
301
302         * ArrayListTest.cs: Catch unexpected exception typs and report as
303         failures.
304
305 2002-04-29  Nick Drochak  <ndrochak@gol.com>
306
307         * ArrayListTest.cs (TestBinarySearch): Catch the correct exception here.
308
309 2002-04-29  Nick Drochak  <ndrochak@gol.com>
310
311         * ArrayListTest.cs (): Remove test on unsorted array.  Behavior is 
312         undefined according to docs. Re-added test that was commented out.
313
314 2002-03-24  Duncan Mak  <duncan@ximian.com>
315
316         * SortedListTest.cs: Committed to CVS for Jaak Simm <jaaksimm@firm.ee>.
317
318 2002-02-28  Nick Drochak  <ndrochak@gol.com>
319
320         * HashtableTest.cs: make the second test class public.  The was showing
321         as an error whe run against the mscorlib.  Might be because of the
322         new NUnit that was just checked in.
323
324 2002-02-20  Nick Drochak  <ndrochak@gol.com>
325
326         * ArrayListTest.cs: Add a small assert for a bug that I found and fixed
327         in ArrayList.  Make sure it doesn't come up again.
328
329 2002-02-10  Nick Drochak  <ndrochak@gol.com>
330
331         * QueueTest.cs: Put in correct namespace.
332
333 2002-02-09  Nick Drochak  <ndrochak@gol.com>
334
335         * StackTest.cs: Removed test for IsReadonly.  Doesn't exist in .NET 1.0
336
337 2002-01-20  Nick Drochak  <ndrochak@gol.com>
338
339         * BitArrayTest.cs: wrapped try-catch blocks around several of the tests. 
340         NUnit doesn't properly catch exception here anymore.  Must be something
341         to do with upgrading to .NET.1.0.