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