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

ChangeLog « System.Text « Test « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6156bfa83ca700d72bceeb552d812865b2b6cd77 (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
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
2009-10-27  Sebastien Pouliot  <sebastien@ximian.com>

	* UnicodeEncodingTest.cs: Add test cases with an odd number of 
	bytes being used in GetString (it does not crash but it does not
	work like MS FX either).

2009-09-12 Gonzalo Paniagua Javier <gonzalo@novell.com>

	* StringBuilderTest.cs: new test.

2009-07-26 Gonzalo Paniagua Javier <gonzalo@novell.com>

	* StringBuilderTest.cs: new overflow tests.

2009-06-26  Robert Jordan  <robertj@gmx.net>

	* UTF8EncodingTest.cs: Fix the NET_1_1 build.

2009-06-26  Zoltan Varga  <vargaz@gmail.com>

	* *.cs: Convert all tests to new-style nunit classes/methods. Add
	[Test] attributes to some tests which were missing them.

2009-02-05  Gert Driesen  <drieseng@users.sourceforge.net>

	* UTF32EncodingTest.cs: Added tests for GetByteCount overloads.

2009-01-30  Atsushi Enomoto  <atsushi@ximian.com>

	* UTF8EncodingTest.cs : added test for bug #415628.

2009-01-13  Jb Evain  <jbevain@novell.com>

	* EncoderTest.cs: Make sure we can get an encoder for a custom
	encoding.
	* DecoderTest.cs: ditto.

2008-04-09  Atsushi Enomoto  <atsushi@ximian.com>

	* UTF7EncodingTest.cs : added test for broken GetCharCount() case.

2007-12-27  Atsushi Enomoto  <atsushi@ximian.com>

	* EncoderReplacementFallbackTest.cs,
	  EncoderReplacementFallbackBufferTest.cs : encoder test for
	  "\uFFFD" replacement.

2007-10-26  Atsushi Enomoto  <atsushi@ximian.com>

	* UTF8EncodingTest.cs : looks like the issue is not fixed in .NET 1.x
	  and hence it looked like a regression. (It wasn't.)

2007-10-25  Atsushi Enomoto  <atsushi@ximian.com>

	* UnicodeEncodingTest.cs,
	  UTF8EncodingTest.cs,
	  DecoderReplacementFallbackBufferTest.cs,
	  DecoderReplacementFallbackTest.cs : default replacement buffer fix.
	  Added test for Reset() for replacement buffer.

2007-10-16  Gert Driesen  <drieseng@users.sourceforge.net>

	* TestEncoding.cs: Also make class available on 1.0 profile.
	* EncodingTest.cs: Added tests for Is* properties.
	* UTF7EncodingTest.cs: Added tests for Is* properties.
	* UnicodeEncodingTest.cs: Added tests for Is* properties. Fixed
	line endings.
	* UTF8EncodingTest.cs: Added tests for Is* properties. Spaces to
	tabs. Numbered tests.
	* ASCIIEncodingTest.cs: Added tests for Is* properties. No longer
	derive from TestCase class. Spaces to tabs.
	* UTF32EncodingTest.cs: Added tests for Is* properties. No longer
	derive from deprecated Assertion class.

2007-07-06  Gert Driesen  <drieseng@users.sourceforge.net>

	* DecoderReplacementFallbackTest.cs: Fixed DontChangeReadOnlyCodePage-
	DecoderFallback test to pass on systems where codepage 932 is valid.
	Assert that exception is thrown by DecoderFallback property.
	* EncoderReplacementFallbackTest.cs: Fixed DontChangeReadOnlyCodePage-
	EncoderFallback test to pass on systems where codepage 932 is valid.
	Assert that exception is thrown by EncoderFallback property.

2007-04-19  Marek Habersack  <mhabersack@novell.com>

	* DecoderReplacementFallbackTest.cs: expect the correct
	exception.

2007-02-01  Gert Driesen  <drieseng@users.sourceforge.net>

	* EncodingTest.cs: Enabled test again.

2007-02-01  Atsushi Enomoto  <atsushi@ximian.com>

	* EncodingTest.cs :
	  reverted part of the related patch, thus added NotWorking.

2007-01-31  Gert Driesen  <drieseng@users.sourceforge.net>

	* EncodingTest.cs: Improved test for not-supported encoding.

2007-01-31  Gert Driesen  <drieseng@users.sourceforge.net>

	* EncodingTest.cs: Added tests for GetEncoding.

2006-07-18  Kornél Pál  <kornelpal@gmail.com>

	* ASCIIEncodingTest.cs: Added TestGetString3 test.

2006-07-11  Kornél Pál  <kornelpal@gmail.com>

	* StringBuilderTest.cs: Added SetLength test.

2006-06-24  Kornél Pál  <kornelpal@gmail.com>

	* UnicodeEncodingTest.cs: Added ByteOrderMark tests.

2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>

	* EncodingInfoTest.cs : new TestFixture.

2006-04-13  Atsushi Enomoto  <atsushi@ximian.com>

	* ASCIIEncodingTest.cs : added DecoderFallback().

2006-03-30  Atsushi Enomoto  <atsushi@ximian.com>

	* EncoderTest.cs, DecoderTest.cs : new tests, for Convert().

2006-02-14  Atsushi Enomoto  <atsushi@ximian.com>

	* UTF8EncodingTest.cs : test for bug #77550.

2006-02-03  Atsushi Enomoto  <atsushi@ximian.com>

	* UTF8EncodingTest.cs : added test for insufficient bytes for
	  flush=true and leftOver!='\0' case.

2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>

	* UTF7EncodingTest.cs : added test for bug #77315.
	* UTF8EncodingTest.cs : added test for bug #77315. Also, now a
	  bunch of tests are working (while they are marked as NotDotNet
	  under 1.1 profile).

2006-01-20  Raja R Harinath  <rharinath@novell.com>

	* UnicodeEncodingTest.cs (TestMaxByteCount): Remove extra declaration.

2006-01-20  Atsushi Enomoto  <atsushi@ximian.com>

	* UTF8EncodingTest.cs : added CloneNotReadOnly().

2006-01-19  Atsushi Enomoto  <atsushi@ximian.com>

	* UnicodeEncodingTest.cs, DecoderReplacementFallbackBufferTest.cs,
	  EncoderReplacementFallbackBufferTest.cs : tests were fixed but
	  "NotWorking" were not marked correctly.

2006-01-19  Atsushi Enomoto  <atsushi@ximian.com>

	* UTF7EncodingTest.cs UTF8EncodingTest.cs UnicodeEncodingTest.cs :
	  due to the introduction of fallback, some of their internals have
	  changed. Thus marked some tests as NotWorking.
	* DecoderReplacementFallbackBufferTest.cs,
	  EncoderReplacementFallbackBufferTest.cs :
	  some behaviors have changed since beta2, so marked old tests as
	  NotWorking.

2005-12-05  Sebastien Pouliot  <sebastien@ximian.com>

	* StringBuilderTest.cs: Test case MaxCapacity_Overflow3 doesn't work
	under MS 1.1 SP1 (it should throw an ArgumentOutOfRangeException) but
	it does work under Mono and MS 2.0 (final). Tagged as "NotWorking".

2005-11-22  Atsushi Enomoto  <atsushi@ximian.com>

	* EncoderReplacementFallbackTest.cs :
	  Added Latin1 replacement test.
	  Updated some test results changed from beta2 to RTM.
	* DecoderReplacementFallbackTest.cs : the same updates.

2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>

	* UTF8EncodingTest.cs : Simply replaced all ArgumentException with
	  switched alias (it is DecodefFallbackException in NET_2_0).

2005-11-15  Atsushi Enomoto  <atsushi@ximian.com>

	* EncoderReplacementFallbackBufferTest.cs : new test (it's weird, but
	  mostly identical to DecoderReplacementFallbackBufferTest...)

2005-11-15  Atsushi Enomoto  <atsushi@ximian.com>

	* DecoderReplacementFallbackBufferTest.cs : new test.

2005-11-15  Atsushi Enomoto  <atsushi@ximian.com>

	* TestEncoding.cs,
	  DecoderReplacementFallbackTest.cs,
	  EncoderReplacementFallbackTest.cs : new 2.0 tests.

2005-08-25  Atsushi Enomoto  <atsushi@ximian.com>

	* UTF8EncodingTest.cs : added GetCharsFEFF().

2005-06-21  Ben Maurer  <bmaurer@ximian.com>

	* StringBuilderTest.cs: Test replacing with a longer string.

2005-05-06  Ben Maurer  <bmaurer@ximian.com>

	* StringBuilderTest.cs (MaxCapacity_Overflow3): Test for #72244.

2005-01-21  Ben Maurer  <bmaurer@ximian.com>

	* StringBuilderTest.cs (CapacityFromString): This relies on impl
	specific behavior. Rewrite the test.

2005-01-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* System.Text/StringBuilderTest.cs: new tests for capacity when the
	StringBuilder is created from a string.

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

	* StringBuilderTest.cs: patch to test for capacity being exceeded.

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

	* UTF7EncodingTest.cs: Added 3 more test cases from RFC1642 to decode
	and re-encode UTF7 from/to unicode.

2004-06-07  Atsushi Enomoto  <atsushi@ximian.com>

	* UTF8EncodingTest.cs : Added TestThrowOnInvalid().

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

	* StringBuilderTest.cs: Added unit tests to be sure integer overflows
	are catched.

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

	* UTF7EncodingTest.cs, UnicodeEncodingTest.cs: Removed unused SetUp 
	and TearDown to facilitate searches.

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

	* UTF8EncodingTest.cs: Test both characters in test 2.1.4.

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

	* UTF8EncodingTest.cs: Ajusted test 3.3.6 and 3.3.7 because MS accept
	invalid UTF8 (when it shouldn't) and Mono doesn't. Both case are now
	accepted by the unit tests.

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

	* UTF8EncodingTest.cs: Added 70 new unit tests from UTF-8-test.txt
	(available from http://www.cl.cam.ac.uk/~mgk25/). Tests are adapted
	so MS implementation pass them all.

2004-03-19  Dick Porter  <dick@ximian.com>

	* UnicodeEncodingTest.cs: Test for character counts on subranges
	of arrays with a BOM at the start of the array.

2004-03-10  Juraj Skripsky <juraj@hotfeet.ch>

	* StringBuilderTest.cs: added new test for bug in Insert.

2004-01-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* StringBuilderTest.cs: added test for bug #53240.

2004-01-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* StringBuilderTest.cs: added tests for the couple of bugs found in the
	new StringBuilder implementation.

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

	* UTF7EncodingTest.cs: 
	* UTF8EncodingTest.cs: added from Patrick Kalkman <kalkman@cistron.nl>

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

	* StringBuilderTest.cs: added replace tests from bug #41397 by
	<tom@acquist.com>>.

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

	* ASCIIEncodingTest.cs: added a couple of asserts fot zero-length
	arrays.

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

	* StringBuilderTest.cs: Test for specific exception using Nunit verson
	2 style Attribute.

2003-01-30  Zoltan Varga  <vargaz@freemail.hu>

	* StringBuilderTest.cs: added test for passing a negative capacity to
	the constructor.

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

	* all: make tests build and run under nunit2

2002-12-12 Jackson Harper <jackson@latitudegeo.com>

	* AllTests.cs: Comment out UTF8... test (it does not exist)

2002-03-17  Mike Kestner  <mkestner@speakeasy.net>

	* ASCIIEncodingTest.cs : New suite for ASCIIEncoding.
	* AllTests.cs : Add the new suite.

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

	* AllTests.cs: Remove StringBuilderTest suite.  There's a major failure
	when it's included and the test errors aren't displayed. 

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

	* StringBuilderTest.cs: Fixed tests that were failing against mscorlib.