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