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