Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ChangeLog « System.Collections « Test « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 885360ab080ac96d348e22e560b080a6db38da5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
2004-07-28  Dick Porter  <dick@ximian.com>

	* ComparerTest.cs: Test for invariant compares (bug 61458.)

2004-06-14  Sebastien Pouliot  <sebastien@ximian.com>

	* HashtableTest.cs: Added new case to CopyTo(Array,int) an empty 
	hashtable.
	* SortedListTest.cs: Un-ignored TestCapacity4 test case as it now 
	works correctly under Mono.

2004-06-01  Sebastien Pouliot  <sebastien@ximian.com>

	* SortedListTest.cs: Added new test when initial capacity is set to 0
	(so it never returns to default, 16, when Capacity is set to 0) unless
	Clear is called. Cleaned up unused SetUp/TearDown.

2004-05-31  Sebastien Pouliot  <sebastien@ximian.com>

	* ArrayListTest.cs: Added new test for null in BinarySearch.
	* HashtableTest.cs: Added null checking fro GetObjectData.

2004-05-27  Sebastien Pouliot  <sebastien@ximian.com>

	* HashtableTest.cs: Added case where a cloned hashtable must also be
	synchronized (if the original was).
	* QueueTest.cs: Added case where we try to get Current after the last
	MoveNext. Added case to ensure that MoveNext always return false 
	(after the first time). Test for synchronized clones.
	* SortedListTest.cs: Added cases for synchronized capacity and testing
	the interface from the internal enumerator. Test that setting Capacity
	to zero return the capacity to it's initial default (16).

2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>

	* ArrayListTest.cs: Added tests for integer overflows.

2003-12-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* QueueTest.cs: added more tests. Patch from Carlos Barcenilla.

2003-11-10  Zoltan Varga  <vargaz@freemail.hu>

	* StackTest.cs: Applied patch from Carlos A. Barcenilla to fix minor
	bugs (#50755).

2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* HashtableTest.cs: patch from Carlos A.  Barcenilla
	(barce@frlp.utn.edu.ar) that includes some fixes for Hashtable +
	NUnit2 tests.

2003-10-07 Nick Drochak <ndrochak@gol.com>

	* DictionaryBaseTest.cs:
	* NewArrayListTest.cs: Clean up warnings that were annoying me.

2003-08-12  Nick Drochak <ndrochak@gol.com>

	* NewArrayListTest.cs: Disable part that was failing on .NET. Marked
	with FIXME.

2003-08-11  Duncan Mak  <duncan@ximian.com>

	* ArrayListTest.cs: Added test case submitted by Tum in bug #45036.

	* DictionaryBaseTest.cs: added new test provided by Carlos Barcenilla
	(barce@frlp.utn.edu.ar).

2003-08-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* CollectionBaseTest.cs: added new test provided by Carlos Barcenilla
	(barce@frlp.utn.edu.ar).

2003-08-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* CollectionBaseTest.cs: added a few more tests. Now derives from
	Assertion.

2003-06-20  Nick Drochak  <ndrochak@gol.com>

	* SortedListTest.cs: Make it pass on .NET 1.1.

2003-06-14  Duncan Mak  <duncan@ximian.com>

	* SortedListTest.cs
	(TestIndexer):
	(TestEnumerator): Incorporated these two tests from Philippe
	Lavoie <philippe.lavoie@cactus.ca>.

2003-06-12  Duncan Mak  <duncan@ximian.com>

	* HashtableTest.cs: Converted it to the new style of NUnit tests.

	(TestCtor3): 
	(TestCtor4): new tests for the constructor.

2003-06-11  Duncan Mak  <duncan@ximian.com>

	* SortedListTest.cs: Convert it to the new style of NUnit tests.

	(TestCapacity2):
	(TestCapacity3):
	(TestCapacity4): new tests for the Capacity property.

	(TestIndexOfValue2):
	(TestIndexOfValue3): new tests for the IndexOfValue method.
	
2003-06-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* HashtableTest.cs: removed duplicate tests and unneeded inner class.

2003-06-07  Ben Maurer <bmaurer@users.sourceforge.net>
	* StackTest.cs: Added test for Contains (null)

2003-05-13 Nick Drochak <ndrochak@gol.com>

	* DictionaryEntry.cs: Added test

2003-05-03 Ben Maurer <bmaurer@users.sourceforge.net>
	
	* ArrayListTest.cs:
		Tests for the above* ArrayList.cs
		Added methods to support IList wrappers

2003-04-15  Eduardo Garcia Cebollero <kiwnix@yahoo.es>

	* CaseInsensitiveComparerTest.cs: Added Some Tests.

2003-04-09  Ville Palo <vi64pa@kolumbus.fi>

	* ArraListTest.cs: Added little test for Sort ().
	
2003-02-15  Nick Drochak  <ndrochak@gol.com>

	* CollectionBaseTest.cs: Make it a better NUnit v2 example

2003-02-15  Pedro Martínez Juliá  <yoros@wanadoo.es>

	* HashtableTest.cs: Add serialization test.

2002-12-21  Nick Drochak <ndrochak@gol.com>

	* all: make tests build and run under nunit2

2002-10-16  Nick Drochak  <ndrochak@gol.com>

	* QueueTest.cs: Add test from tetsuo via Vladimir Vukicevic 
	(vladimir@pobox.com).

2002-10-09  Nick Drochak  <ndrochak@gol.com>

	* SortedListTest.cs: Re-enable test for IsSyncronized

2002-09-24  Nick Drochak  <ndrochak@gol.com>

	* ArrayListTest.cs: Add test for InsertRange() for the case where an
	ArrayList is passed to itself to be insterted.

2002-09-24  Nick Drochak  <ndrochak@gol.com>

	* ArrayListTest.cs: Add check that enumerator is invalidated after a
	method that changes the list, such as Add(), Remove(), etc.

2002-07-02  Nick Drochak  <ndrochak@gol.com>

	* SortedListTest.cs: Fix some expected/actual value parameters for
	AssertEquals().

2002-06-30  Nick Drochak  <ndrochak@gol.com>

	* SortedListTest.cs: Fix some expected/actual value parameters in the
	Assert()'s. Disable a part of test until the class is finished.

2002-06-25  Nick Drochak  <ndrochak@gol.com>

	* QueueTest.cs: Trap some unexpected exceptions and add a bit of
	verbosity to some assert messages.

2002-06-20  Nick Drochak  <ndrochak@gol.com>

	* SortedListTest.cs: Make tests pass against ms.net.
	* QueueTest.cs: Make tests pass against ms.net.

2002-06-19  Nick Drochak  <ndrochak@gol.com>

	* AllTests.cs: Sort names and include missing tests.
	* SortedListTest.cs: Change Console.WriteLine() into Fail().

2002-05-27  Nick Drochak  <ndrochak@gol.com>

	* ArrayListTest.cs (TestLastIndexOf): Add try-catch block to report
	where we are throwing.

2002-05-21  Lawrence Pit  <loz@cable.a2000.nl>

	* ArrayListTest.cs: Added several tests to test for 0 capacity

2002-05-05  Nick Drochak  <ndrochak@gol.com>

	* ArrayListTest.cs: Test for RankException when constructing from a 
	multi-dimensional array. Confirmed behavior from MS.NET

2002-05-01  Nick Drochak  <ndrochak@gol.com>

	* ArrayListTest.cs (TestBinarySearch) : accomodate possible bug in
	.NET runtime.

2002/05/01  Nick Drochak <ndrochak@gol.com>

	* ArrayListTest.cs (TestCopyTo) : Make assert messages unique and
	avoid possible MS.NET bug when test is run on .NET.

2002/04/30  Nick Drochak <ndrochak@gol.com>

	* ArrayListTest.cs (TestInsertRange) : Make assert messages unique.

2002-04-30  Nick Drochak  <ndrochak@gol.com>

	* ArrayListTest.cs (TestTrimToSize): Change test so that it doesn't
	rely on the specific timing of a capacity change.  Our corlib doubles
	capacity sooner than the reference system does.

2002-04-30  Nick Drochak  <ndrochak@gol.com>

	* ArrayListTest.cs: Catch unexpected exception typs and report as
	failures.

2002-04-29  Nick Drochak  <ndrochak@gol.com>

	* ArrayListTest.cs (TestBinarySearch): Catch the correct exception here.

2002-04-29  Nick Drochak  <ndrochak@gol.com>

	* ArrayListTest.cs (): Remove test on unsorted array.  Behavior is 
	undefined according to docs. Re-added test that was commented out.

2002-03-24  Duncan Mak  <duncan@ximian.com>

	* SortedListTest.cs: Committed to CVS for Jaak Simm <jaaksimm@firm.ee>.

2002-02-28  Nick Drochak  <ndrochak@gol.com>

	* HashtableTest.cs: make the second test class public.  The was showing
	as an error whe run against the mscorlib.  Might be because of the
	new NUnit that was just checked in.

2002-02-20  Nick Drochak  <ndrochak@gol.com>

	* ArrayListTest.cs: Add a small assert for a bug that I found and fixed
	in ArrayList.  Make sure it doesn't come up again.

2002-02-10  Nick Drochak  <ndrochak@gol.com>

	* QueueTest.cs: Put in correct namespace.

2002-02-09  Nick Drochak  <ndrochak@gol.com>

	* StackTest.cs: Removed test for IsReadonly.  Doesn't exist in .NET 1.0

2002-01-20  Nick Drochak  <ndrochak@gol.com>

	* BitArrayTest.cs: wrapped try-catch blocks around several of the tests. 
	NUnit doesn't properly catch exception here anymore.  Must be something
	to do with upgrading to .NET.1.0.