2004-05-27 Sebastien Pouliot <sebastien@ximian.com>
[mono.git] / mcs / class / corlib / Test / System / ChangeLog
1 2004-05-27  Sebastien Pouliot  <sebastien@ximian.com>
2
3         * ConvertTest.cs: Mode complete tests for unsigned type convertion wrt
4         -0, base != 10, ...
5
6 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
7
8         * ArrayTest.cs: Added integer overflow tests for LastIndexOf.
9         * ConvertTest.cs: Added case where 0X00 is valid when parsed in base16
10
11 2004-05-25  Sebastien Pouliot  <sebastien@ximian.com>
12
13         * ArrayTest.cs: Added tests to check for integer overflow in Clear,
14         Copy and Reverse.
15         * BitConverterTest.cs: Added test to check for possible integer 
16         overflow in ToString (byte,int,int)
17         * ConvertTest.cs: New tests for prefixed hexadecimal strings and
18         negative byte convertion.
19         * StringTest.cs: Added new tests for integer overflow and negatives.
20         Added tests for special cases like s.LastIndexOf ('o', s.Length, 1)
21         fail but s.LastIndexOf ("o", s.Length, 1) works.
22
23 2004-05-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24
25         * DateTimeTest.cs: test for bug 56436.
26
27 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
28
29         * ArrayTest.cs: Added a new test to clear outside the bound of a
30         multidimentional array.
31         * BooleanTest.cs: Added new test to compare booleans using Equals
32         and == (case of True!=True). Converted to NUnit2 format.
33         * BitConverterTest.cs: Added new tests for negative integers and 
34         integer overflow in To... methods. Added new boolean convertion
35         tests.
36         * BufferTest.cs: Added new tests for integer overflow in BlockCopy.
37
38 2004-05-22  Sebastien Pouliot  <sebastien@ximian.com>
39
40         * ArrayTest.cs: Added a new test to clear a jagged array and a 
41         multidimentional array.
42         * IntPtrTest.cs: New. Tests for 32/64 bits behaviour of IntPtr.
43         * SingleTest.cs: Added tests to compare positive 0 and negative 0.
44         * UIntPtrTest.cs: New. Tests for 32/64 bits behaviour of UIntPtr.
45
46 2004-05-21  Sebastien Pouliot  <sebastien@ximian.com>
47
48         * DecimalTest.cs: Added new unit test to check for correct rounding.
49         It appears that Decimal.To... trunk but Convert.To... use banking
50         rounding (so we can't use Convert.To... to implement To...). But
51         IConvertible does share Convert.To behaviour. Added tests for negative
52         values and large number parsing (> Int64).
53         * SingleTest.cs: New. Unit tests for Single (adapted from Double).
54
55 2004-05-20  Sebastien Pouliot  <sebastien@ximian.com>
56
57         * AppDomainTest.cs: Renamed Unload to TearDown (like it's attribute)
58         to ease searches.
59         * ConvertTest.cs: Added new unit tests for integer overflow in To/From
60         Base64CharArray. Added new test for wide char. Exploded some tests in
61         NUnit2 format (to ease add new tests).
62
63 2004-05-19  Gert Driesen (drieseng@users.sourceforge.net)
64         
65         * AttributeTest.cs: added tests for Inherited and
66         AllowMultiple
67
68 2004-05-19  Gert Driesen (drieseng@users.sourceforge.net)
69
70         * AttributeTest.cs: formatting, and remove commented
71         code
72
73 2005-05-18  Sebastien Pouliot  <sebastien@ximian.com>
74
75         * BufferTest.cs: Added missing tests for BlockCopy exceptions.
76
77 2004-04-27  Nick Drochak <ndrochak@gol.com>
78
79         * ConvertTest.cs: Remove compiler warnings.
80
81 2004-04-25  Nick Drochak <ndrochak@gol.com>
82
83         * MathTest.cs: Check precision only so far.
84
85 2004-04-22  Lluis Sanchez Gual  <lluis@ximian.com>
86
87         * AppDomainSetupTest.cs: Changed again test 3 to test that the appdomain is 
88           relative to the current dir, rather than the temp dir. I confirment that
89           this is how ms.net works.
90
91 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
92
93         * TypeTest.cs: Add new regression test for bug #55874.
94
95 2004-04-12 David Sheldon <dave-mono@earth.li>
96  
97         * TimeZoneTest.cs: Make pass when in "GMT".
98   
99 2004-04-09 David Sheldon <dave-mono@earth.li>
100  
101     * ConvertTest.cs: Tests for Convert.ToInt32(string, base), with
102         signs on the strings.
103
104 2004-04-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
105
106         * TypeTest.cs: enumerated the tests.
107
108 2004-04-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
109
110         * EnvironmentTest.cs: use uppercase for PATH. Added test to check the
111         expected substitutions.
112
113 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
114
115         * EnvironmentTest.cs: New. Add unit tests for ExpandEnvironmentVariables.
116
117 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
118
119         * GuidTest.cs: Test constructor when the input string is in format "P" 
120           or "N".
121
122 2004-03-23  Lluis Sanchez Gual  <lluis@ximian.com>
123
124         * ByteTest.cs, Int32Test.cs, Int64Test, SingleFormatterTest.cs,
125           UInt16Test.cs, UInt32Test.cs, UInt64Test.cs: Made some tests depend on the
126           current culture.
127
128 2004-03-22  Dick Porter  <dick@ximian.com>
129
130         * DateTimeTest.cs (System): Test the MM-dd-yyyy date parse format.
131
132 2004-03-21  Jackson Harper  <jackson@ximian.com>
133
134         * DoubleFormatterTest.cs: test setting the number of decimal
135         digits.
136
137 2004-03-10  Sebastien Pouliot  <sebastien@ximian.com>
138
139         * ConvertTest.cs: Added another test showing that input length 
140         can't easily be used to check for valid base64 encoding.
141
142 2004-03-10  Sebastien Pouliot  <sebastien@ximian.com>
143
144         * ConvertTest.cs: Added a new unit tests for FromBase64String and 
145         FromBase64CharArray to check for ignored characters (tab, lf, cr 
146         and spaces). Splitted existing tests into smaller tests.
147
148 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
149
150         * StringTest.cs: Add regression test for bug #54988.
151
152 2004-02-27  Sebastien Pouliot  <sebastien@ximian.com>
153
154         * ConvertTest.cs: Added a new test for bug #54939 when converting a
155         base64 containing NF and/or LF.
156
157 2004-02-27  Lluis Sanchez Gual <lluis@ximian.com>
158
159         * StringTest.cs: Added test for Concat when one of the arguments is an
160           object that returns null on its ToString ().
161
162 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
163
164         * AttributeTest.cs: added test for bug 54518.
165
166 2004-02-20  Atsushi Enomoto  <atsushi@ximian.com>
167
168         * CharCategoryTest.cs : csc build fix (line length excess.)
169
170 2004-02-18  Atsushi Enomoto  <atsushi@ximian.com>
171
172         * CharCategoryTest.cs : cleaning ;)
173
174 2004-02-18  Atsushi Enomoto  <atsushi@ximian.com>
175
176         * Added CharCategoryTest.cs (brute force test for Char.IsXXX()).
177
178 2004-02-05  Sebastien Pouliot  <sebastien@ximian.com>
179
180         * AppDomainTest.cs: New. Unit tests for SetPrincipalPolicy and
181         SetThreadPrincipal.
182
183 2004-01-31  Nick Drochak <ndrochak@ieee.org)
184
185         * ConvertTest: Cannot partially qualify the type name with csc.
186
187 2004-01-31  David Sheldon  <dave-mono@earth.li>
188
189   * ConvertTest.cs: Added test for malformed Base64. Bug 52928 
190
191 2004-01-30  Sebastien Pouliot  <spouliot@videotron.ca>
192
193         * DateTimeTest.cs: Modified X509Certificate test to use 
194         ToUniversalTime ().
195
196 2004-01-28  Sebastien Pouliot  <spouliot@videotron.ca>
197
198         * DateTimeTest.cs: Added a new unit test (X509Certificate) to better
199         detect regressions in DateTime. See bugzilla entry #53461.
200
201 2004-01-27  Nick Drochak <ndrochak@gol.com>
202
203         * AppDomainSetupTest.cs: When I run this on .NET the AppBase uses the
204         temp dir.  Perhaps a different runner gives different results? I'm
205         using 'make run-test' from the mcs directory.
206
207 2004-01-22 David Sheldon <dave-mono@earth.li>
208
209        * AppDomainSetupTest: Changed test 3 to test that the
210          appdomain is relative to the current dir, rather than 
211          the temp dir. This is what the MS runtime appears to 
212          give, and handily is what we do too.
213
214 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
215
216         * DateTimeTest.cs: added test for bug 52075.
217
218 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
219
220         * TypeTest.cs: Add Tests for vectors<->one dim. arrays.
221
222 2003-01-11 David Sheldon <dave-mono@earth.li>
223
224         * DateTimeTest.cs: Tests for bug 52274 fix, formats such as 
225         '--MM--'
226
227 2003-12-27  Nick Drochak <ndrochak@gol.com>
228
229         * AppDomainSetupTest.cs: Seems that AppDomainSetup's use the temp
230         path, not current directory.
231
232 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
233
234         * Int32Test.cs:
235           Int64Test.cs: Add checks for overflow on hex parse.
236  
237 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
238
239         * TypeTest.cs (GetMethodImpl): New test for overload resolution.
240
241 2003-12-19  Dick Porter  <dick@ximian.com>
242
243         * StringTest.cs: Added Compare test for length==0.
244
245 2003-12-17  Dick Porter  <dick@ximian.com>
246
247         * StringTest.cs: Add a String.Empty test to EndsWith.  Changed the
248         StartsWith and EndsWith tests to use the attribute declaration.
249
250 2003-12-17  Atsushi Enomoto <atsushi@ximian.com>
251
252         * StringTests.cs : Added more tests on TestStartsWith.
253
254 2003-12-08  Patrik Torstensson <p@rxc.se>
255
256         * TypeTest.cs: Added basic tests for GetMethodImpl and GetPropertyImpl
257
258 2003-12-08  Nick Drochak <ndrochak@gol.com>
259
260         * DateTimeTest.cs: Little build fix for csc. It doesn't like the
261         fully qualified name.
262
263 2003-12-06  Ravindra <rkumar@novell.com>
264
265         * DateTimeTest.cs: Added a test case for Parse(String, format).
266         Bug #51464.
267
268 2003-11-14  Nick Drochak <ndrochak@gol.com>
269
270         * FloatingPointFormatterTest.cs: Make test pass on .NET 1.1.
271
272 2003-11-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
273
274         * ValueTypeTest.cs: New tests.
275
276 2003-11-14  Nick Drochak <ndrochak@gol.com>
277
278         * DateTime.cs: Running tests in different timezones give different 
279         results.  Need to change the way these tests work. Disabling some
280         tests for now.
281
282 2003-11-14  Nick Drochak <ndrochak@gol.com>
283
284         * ArrayTest.cs: Fix a few tests where NullReferenceException 
285         is expected, not ArgumentNullException.
286
287 2003-11-01  Pedro Martínez Juliá  <yoros@wanadoo.es>
288
289         * DateTimeTest.cs: Changed the Asserts to fix some things related to
290         universal time, we can't test the equality if one DateTime is into
291         the code and the other comes from the TimeZone. Different TimeZones,
292         different errors in the test.
293
294 2003-10-31  Pedro Martínez Juliá  <yoros@wanadoo.es>
295
296         * DateTimeTest.cs: Removed Universal Time in ToString because in
297         each computer that could be different. We need more control over
298         that to know what the result should be.
299
300 2003-09-09  Zoltan Varga  <vargaz@freemail.hu>
301
302         * ArrayTest.cs: Fix the expected exception on some methods.
303
304 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
305
306         * StringTest.cs: added a couple of tests for Split. See bug #47802.
307
308 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
309
310         * ArrayTest.cs: Added regression test for #38812.
311
312 2003-08-10  Miguel de Icaza  <miguel@ximian.com>
313
314         * ArrayTest.cs: New test from Thong (Tum) Nguyen.
315
316 2003-08-04  Duncan Mak  <duncan@ximian.com>
317
318         * FloatingPointFormatterTest.cs: New file. Added with one test by
319         Aleksey Demakov <avd@openlinksw.com>.
320
321         * ConvertTest.cs (TestToUInt16): Add a new case noted by
322         c5n4kh6u02@sneakemail.com in
323         http://bugzilla.ximian.com/show_bug.cgi?id=43098.
324
325 2003-07-23  Lluis Sanchez Gual  <lluis@ximian.com>
326
327         * EnumTest.cs: Test ToString() for unnamed flag enum values.
328
329 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
330
331         * TypeTest.cs: New file.
332
333 2003-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
334
335         * AppDomainSetupTest.cs: new tests.
336
337 2003-06-25  Nick Drochak <ndrochak@gol.com>
338
339         * DateTimeTest.cs: Custom format string uses January of current Year.
340
341 2003-06-25  Nick Drochak <ndrochak@gol.com>
342
343         * DateTimeTest.cs: Re-enable test because bug #30030 is fixed.
344
345 2003-06-25  Nick Drochak <ndrochak@gol.com>
346
347         * ByteTest.cs: Culture settings can affect where it puts the '%'.
348
349 2003-06-23  Nick Drochak <ndrochak@gol.com>
350
351         * ConvertTest.cs: Ignore and report bug in bugzilla #45286.
352
353 2003-06-23  Nick Drochak <ndrochak@gol.com>
354
355         * TimeZoneTest.cs: Make pass when on Tokyo Standard Time.
356
357 2003-06-23  Nick Drochak <ndrochak@gol.com>
358
359         * DecimalTest.cs: Make pass on .NET 1.1
360         * MarshalByRefObjectTest.cs: Avoid port conflict with other tests.
361         * SingleFormatterTest.cs: Ignore user overridden settings.
362
363 2003-06-23  Nick Drochak <ndrochak@gol.com>
364
365         * DateTimeTest.cs (TestOA): Compare DateTime values instead of strings
366         to avoid "culture shock".  Made a new AssertEquals() that is more
367         DateTime-friedly.
368
369 2003-06-19  Nick Drochak <ndrochak@gol.com>
370
371         * ArrayTest.cs: Cleanup unused bits. Also get tests passing on .NET 1.1
372         All tests pass here now.
373
374 2003-06-18  Nick Drochak <ndrochak@gol.com>
375
376         * ArrayTest.cs: Add .NET 1.1 overload test, and fix build problem.
377
378 2003-06-13  Duncan Mak  <duncan@ximian.com>
379
380         * ArrayTest.cs (TestCreateInstance2): Expects
381         ArgumentNullException, which is a specific subtype of
382         ArgumentException.
383
384 2003-06-10  Ville Palo <vi64pa@kolumbus.fi>
385
386         * DateTimeTest.cs: more tests.
387         
388 2003-06-09  Duncan Mak  <duncan@ximian.com>
389
390         * ArrayTest.cs: 
391         (TestCreateInstance2):
392         (TestLastIndexOf4):
393         (TestLastIndexOf5):
394         (MoreSort10): Added 4 new tests.
395
396 2003-06-10  Nick Drochak <ndrochak@gol.com>
397
398         * ArrayTest.cs: Cleanup some unused bits.
399
400 2003-06-02  Sebastien Pouliot  <spouliot@videotron.ca>
401
402         * RandomTest.cs: Added a test to compare Mono's random streams with
403         MS implementation (framework and Rotor). Converted to NUnit2 format.
404
405 2003-06-01  Pedro Martínez Juliá  <yoros@wanadoo.es>
406
407         * DoubleFormatterTest.cs: added the last changes from the author of
408         this test (Patrick Kalkman <kalkman@cistron.nl>).
409
410         * SingleFormatterTest.cs: added the first release of this test from
411         the same author: Patrick Kalkman <kalkman@cistron.nl>.
412
413 2003-05-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
414
415         * ArrayTest.cs: added more tests for bug 43783.
416
417 2003-05-22  Nick Drochak  <ndrochak@gol.com>
418
419         * ArrayTest.cs: Add conditional compile for 1.1
420
421 2003-05-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
422
423         * EnumTest.cs: added tests from bug #41522.
424
425 2003-05-12  Zoltan Varga  <vargaz@freemail.hu>
426
427         * StringTest.cs: New tests for IndexOf and LastIndexOf + conversion
428         to Nunit 2.
429
430 2003-04-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
431
432         * EnumTest.cs: tests from bug #41522 by Richar Lee.
433
434 2003-04-23  Nick Drochak  <ndrochak@gol.com>
435
436         * ArrayTest.cs: Disambiguate overloads now in .NET 1.1.
437         
438 2003-04-18  Eduardo Garcia Cebollero <kiwnix@yahoo.es>
439
440         * ArrayTest.cs: added a few more tests to test Array.Initialize()
441         and added some [Test] atributes to the tests.
442
443 2003-04-17  Nick Drochak  <ndrochak@gol.com>
444
445         * DoubleTest.cs: Output some more debug info.
446
447 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
448
449         * BufferTest.cs: added a few more tests for testing buffer length.
450         Patch by Jerome Laban <jlaban@wanadoo.fr>
451
452 2003-04-10  Ville Palo <vi64pa@kolumbus.fi>
453
454         * ConvertTest.cs: Added some tests for ToXXX methods.
455         TestConvertFromNull ()
456                 
457 2003-03-22  Pedro Martínez Juliá  <yoros@wanadoo.es>
458
459         * DoubleTest.cs: Converted to Nunit 2.0. Completed ToString test.
460
461 2003-03-09  Nick Drochak <ndrochak@gol.com>
462
463         * ConsoleTest.cs: 
464         * ConvertTest.cs: Re-enable tests. They no longer hang the runtime.
465
466 2003-03-03  Nick Drochak <ndrochak@gol.com>
467
468         * StringTest.cs: Catch exception the .NET docs say should not be thrown
469
470 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
471
472         * StringTest.cs: added String constructor tests.
473
474 2003/02/26 Nick Drochak <ndrochak@gol.com>
475
476         * ActivatorTest.cs: Unregister the channel like it should.
477         * MarshalByRefTest.cs: Take out my hack. 
478           Both from Jean-Marc Andr [jean-marc.andre@polymtl.ca].
479
480 2003-02-25  Nick Drochak <ndrochak@gol.com>
481
482         * TimeSpanTest.cs: Isolate test for Negate bug. Same as previous
483         'checked' bug in ByteTest?
484
485 2003/02/21  Nick Drochak <ndrochak@gol.com>
486
487         * EnumTest.cs: Add test for bug 38452 (Parsing numeric enum values).
488
489 2003-02-20  Nick Drochak <ndrochak@gol.com>
490
491         * ByteTest.cs: Isolate test for mcs 'checked' bug.
492
493 2003/02/13  Nick Drochak <ndrochak@gol.com>
494
495         * ActivatorTest.cs:
496         * MarshalByRefTest.cs: New unit tests from Jean-Marc Andr 
497         [jean-marc.andre@polymtl.ca]. One failure on .NET in the latter.
498
499 2003-02-08  Pedro Martínez Juliá  <yoros@wanadoo.es>
500
501         * MathTest.cs: Add more tests because they were insufficient. Now
502         they check limit values. Also add comments with the tests for the
503         new Math functions.
504         
505 2003-02-05  Nick Drochak  <ndrochak@gol.com>
506
507         * StringTest.cs: Remove compiler warnings.
508
509 2003-01-30  Sebastien Pouliot  <spouliot@videotron.ca>
510
511         * TimeZoneTest.cs: Added "Eastern Standard Time" to the test.
512         This won't be complete until all time zone are added (added a
513         Fail for unsupported TimeZones).
514
515 2003-01-29  Sebastien Pouliot  <spouliot@videotron.ca>
516
517         * ByteTest.cs: Updated Setup to support my Locale. Better but
518         probably still incomplete.
519         * DoubleTest.cs: Updated Setup to support my Locale. You can now
520         use a comma (or anything else) instead of a dot (.).
521         * ConvertTest.cs: Updated TestToDecimal and TestToDouble to 
522         support my Locale. You can now use a comma (or anything else) 
523         instead of a dot (.).
524
525 2003-01-28  Nick Drochak <ndrochak@gol.com>
526
527         * ArrayTest.cs: Avoid nulls in arrays. This crashes mono.
528         * ConsoleTest.cs: Ignore some tests that hang mono.
529         * ConvertTest.cs: Ignore some tests that hang mono.
530
531 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
532
533         * StringTest.cs: Added tests for out-of-bounds indexes in GetChars().
534
535 2003-01-13  Nick Drochak  <ndrochak@gol.com>
536
537         * DateTimeTest.cs: Use 2003, since that' the year now.  Need to work
538         on this test so we don't have it fail each new year.
539
540 2002-12-21  Nick Drochak <ndrochak@gol.com>
541
542         * all: make tests build and run under nunit2
543
544 2002-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
545
546         * StringTest.cs: added 1 more check.
547
548 2002-10-29  Zoltan Varga  <vargaz@freemail.hu>
549
550         * EnumTest.cs: Added tests for whitespaces in Enum:Parse().
551
552 2002-10-16  Nick Drochak  <ndrochak@gol.com>
553
554         * EnumTest.cs: Find out which Assert is causing the error on mono.
555
556 2002-10-09  Nick Drochak  <ndrochak@gol.com>
557
558         * BufferTest.cs: Test for ArgumentExceptions where they should be 
559         thrown
560         * Int32Test.cs: Enable tests for custom format strings.  We do have
561         implementation for them now.
562
563 2002-09-29  Nick Drochak  <ndrochak@gol.com>
564
565         * DecimalTest.cs: Change from Assert() with == to AssertEquals(). This
566         gets the tests to pass on linux, but they shouldn't need that.  Now
567         to find out why.  This seems deep...
568
569 2002-09-19  Nick Drochak  <ndrochak@gol.com>
570
571         * ArrayTest.cs: Report errors with CopyTo().
572
573 2002-09-19  Nick Drochak <ndrochak@gol.com>
574
575         * ArrayTest.cs: Can check for exception throw now on CopyTo(). Re-
576         enable test.
577
578 2002-09-13  Nick Drochak  <ndrochak@gol.com>
579
580         * EnumTest.cs: Add an extreme value test for format.
581
582 2002-09-11  Nick Drochak  <ndrochak@gol.com>
583
584         * DoubleTest.cs: Add test for bad format string passed to ToString().
585         * Int64Test.cs: Re-enable broad range of test values.
586         * MulticastDeletegateTest.cs: Re-enable test for correct order of
587         delegate firing.
588
589 2002-09-08  Nick Drochak  <ndrochak@gol.com>
590
591         * DateTimeTest.cs: Disable test bug file it in bugzilla.
592
593 2002-09-04  Jonathan Pryor <jonpryor@vt.edu>
594         * EnumTest.cs: 
595           - Added additional "x" formatter test case to test most recent Enum.cs patch
596                 - Code cleanup so that all TestFormat test cases would be executed
597                 - Change exception types in TestFormat_Args so that it passes on .NET.
598                   (Some ArgumentNullExceptions should be been ArgumentExceptions.)
599
600 2002/08/09  Nick Drochak <ndrochak@gol.com>
601
602         * DecimalTest.cs: Add try-catch block to find which one is throwing
603         the Overflow.  Also started making each Assert using a unique message
604         to differentiate those as well.
605
606         * MulticastDelegate.cs: Disable tests checking the order that delegates
607         are executed.  There's a bugzilla entry for this already because we do
608         it in reverse order. See:
609         http://bugzilla.ximian.com/show_bug.cgi?id=28306
610
611 2002/08/02  Nick Drochak <ndrochak@gol.com>
612
613         * ConvertTest.cs (TestGetTypeCode): Find out which test is failing on
614         linux.
615
616 2002-08-02  Nick Drochak  <ndrochak@gol.com>
617
618         * BufferTest.cs (TestBlockCopy): BlockCopy uses the number of bytes,
619         so hard-code some of that info into the test since sizeof() is a very
620         unsafe thing to do.
621
622 2002-07-31  Nick Drochak  <ndrochak@gol.com>
623
624         * BufferTest.cs: Fixed noisy compiler warnings about unused vars.
625
626 2002-07-22  Cesar Octavio Lopez Nataren  <cesar@ciencias.unam.mx>
627
628         * BufferTest.cs: Added this file to test the System.Buffer class 
629         implementation.
630
631 2002-07-17  Martin Baulig  <martin@gnome.org>
632
633         * ConvertTest.cs: Commented out line 456 which contains a non-printable
634         character which mcs does not like.  See also bug #27655.
635
636         * DecimalTest.cs, DecimanTest2.cs: Removed the `using S = System'.
637
638 2002-07-11  Nick Drochak  <ndrochak@gol.com>
639
640         * ArrayTest.cs: Disable a test for now.  Bugzilla'd this one.
641         * ConvertTest.cs: Make message unique for this mistaken duplicate.
642
643 2002-07-04  Nick Drochak  <ndrochak@gol.com>
644
645         * DateTimeTest.cs: Made tests pass on ms.net.  Well, they pass in
646         timezone JST.  Need to test in others.  Maybe I'll fly over to GMT
647         and see how they work.  Supposed to be eaiser there.
648
649 2002-07-04  Nick Drochak  <ndrochak@gol.com>
650
651         * ConvertTest.cs: Make the test generate the overflow exceptions on
652         mono on Linux.
653         * DecimalTest2.cs: Report exception thrown during subtraction.
654
655 2002-07-03  Nick Drochak  <ndrochak@gol.com>
656
657         * DoubleTest.cs: Fix some Assert/AssertEquals usage.
658
659 2002-07-03  Nick Drochak  <ndrochak@gol.com>
660
661         * ArrayTest.cs: Re-enable some tests.  Let's see what's broken still.
662
663 2002-06-20  Nick Drochak  <ndrochak@gol.com>
664
665         * DecimalTest2.cs: Make tests pass against ms.net.
666
667 2002-06-19  Nick Drochak  <ndrochak@gol.com>
668
669         * AllTests.cs: Add missing test: DecimalTest2
670         * DecimalTest2.cs: Convert Console.Writeline() into a Fail()
671
672 2002/06/14  Nick Drochak <ndrochak@gol.com>
673
674         * Int64Test.cs: Make currency symbol test more culturally sensitive.
675
676 2002-06-14  Nick Drochak  <ndrochak@gol.com>
677
678         * DateTimeTest.cs: Make some of the tests a bit more timezone neutral.
679
680 2002-06-12   Nick Drochak  <ndrochak@gol.com>
681
682         * ConvertTest.cs: Punt bug in DateTime.Parse() over to that test.
683         * DateTimeTest.cs: Add test for date format of yyyy-mm-dd which mono
684         doesn't handle automagically like ms.net does.  This smells like a 
685         LAMESPEC, however.
686
687 2002/06/12  Nick Drochak <ndrochak@gol.com>
688
689         * RandomTest.cs: Exercise Next(min,max) a little more, especially
690         boundary conditions.
691
692 2002-06-11  Nick Drochak  <ndrochak@gol.com>
693
694         * StringTest.cs: Check for "end of string" conditions for IndexOf() and
695         Substring().
696
697 2002-06-11  Nick Drochak  <ndrochak@gol.com>
698
699         * DoubleTest.cs: Add some more detail to failure message.
700         * Int64Test.cs: Add some details, and fix a copy-paste error.
701         * UInt32Test.cs: Fix currency symbol/culture issues
702         * UInt64Test.cs: Fix currency symbol/culture issues
703
704 2002/06/11  Nick Drochak <ndrochak@gol.com>
705
706         * DateTimeTest.cs: Remove RunTest override and put culture manipulation
707         in SetUp and TearDown like the other tests.
708         * TimeZoneTest.cs: Same.
709
710 2002-06-11  Nick Drochak  <ndrochak@gol.com>
711
712         * Int64Test.cs: Set the culture to en-US for testing.
713         * MathTest.cs: mono is more precise in Log2, so change test to compare
714         values within a slightly larger margin of error.
715
716 2002/06/10  Nick Drochak <ndrochak@gol.com>
717
718         * DecimalTest.cs: More culture indepenence. Fixes the problems we were
719         having with tests failing against MS.NET.
720         * Int64Test.cs: Same plus some formatting fixes.
721         * RandomTest.cs: Split Assert into two to figure out which one part is
722         failing.
723
724 2002-06-09  Lawrence Pit  <loz@cable.a2000.nl>
725
726         * DateTimeTest.cs: Making tests culture independent
727
728 2002-06-07  Nick Drochak  <ndrochak@gol.com>
729
730         * DecimalTest.cs: Catch unexpected exception and report it.
731
732 2002/06/04  Nick Drochak <ndrochak@gol.com>
733
734         * ByteTest.cs: Fix currency constant that we use for the expected
735         value.  Try to be more culture-diverse.
736
737 2002/06/03  Nick Drochak <ndrochak@gol.com>
738
739         * DecimalTest.cs: Fix some errors that were showing up when run against
740         ms.net.
741
742 2002-06-02  Nick Drochak  <ndrochak@gol.com>
743
744         * ConvertTest.cs: Use en-US culture since that's all we support in our
745         corlib right now. Change constants accordingly.  Also added a bunch of
746         try-catch blocks to show which Assert is failing.
747
748 2002-06-02  Duncan Mak  <duncan@ximian.com>
749
750         * ConvertTest.cs (TestToDecimal): Fixed typo in case #H11.
751
752 2002-06-01  Nick Drochak  <ndrochak@gol.com>
753
754         * BugTest.cs: Remove, bug fixed.  Yay!
755         * AllTests.cs: Remove BugTest from suite.
756
757 2002-05-31  Nick Drochak  <ndrochak@gol.com>
758
759         * BugTest.cs: Small file to show NullReferenceException bug
760         * AllTests.cs: Include BugTest.cs in the suite.
761
762 2002-05-29  Nick Drochak  <ndrochak@gol.com>
763
764         * DecimalTest.cs: Use AssertEquals to get nice error report, and mark
765         each one with a unique message string so we know which one failed.
766
767 2002-05-29  Lawrence Pit  <loz@cable.a2000.nl>
768
769         * DateTimeTest.cs: Added tests M01 to M03 to TestParseExact, 
770         passing typeof this class as arg in property Suite.
771
772 2002-05-22  Lawrence Pit  <loz@cable.a2000.nl>
773
774         * ConsoleTest.cs: Added test writing null.
775
776 2002-05-21  Nick Drochak  <ndrochak@gol.com>
777
778         * MathTest.cs:
779                 (TestPow): Add try-catch to determine where we are throwing.
780                 (TestLog): Re-enable failing test
781                 (TestLog2): same although this test still fails on mono. Not
782                 sure what the proper value      to use here. It works on MS.NET
783
784 2002-05-21  Nick Drochak  <ndrochak@gol.com>
785
786         * MathTest.cs: Better reporting of failures
787         * Int64Test.cs: Add try-catch to determine where we are throwing.
788
789 2002-05-20  Nick Drochak  <ndrochak@gol.com>
790
791         * AttributeTest.cs (TestGetCustomAttribute): Add try-catch to find out
792         which assert is failing.
793
794 2002-05-19  Martin Baulig  <martin@gnome.org>
795
796         * MartinTests.cs: Removed.
797
798 2002-05-14  Nick Drochak  <ndrochak@gol.com>
799
800         * StringTest.cs: A couple more tests
801
802 2002-05-07  Nick Drochak  <ndrochak@gol.com>
803
804         * ExceptionTest.cs: New File. Provided by Linus Upson.
805
806 2002-05-05  Lawrence Pit  <loz@cable.a2000.nl>
807
808         * StringTest.cs: Added test for replace function
809
810 2002-04-30  Nick Drochak  <ndrochak@gol.com>
811
812         * UInt32Test.cs: More verbose on unexepected exception to eliminate
813         compiler warning.
814
815 2002-04-28  Nick Drochak  <ndrochak@gol.com>
816
817         * StringTest.cs: Mark Assert() messages with unique identifiers.
818         * DecimalTest2.cs: Write out more info in the Report method.  Need this
819         to determine why op_Subtraction() is failing in the next line.
820         * MathTest.cs:
821         * DoubleTest.cs:
822         * UInt32Test.cs: Add try-catch blocks to find out where the test is
823         failing.
824
825 2002-04-28  Nick Drochak  <ndrochak@gol.com>
826
827         * ArrayTest.cs (TestIList_IndexOf): Display exception details if we get
828         an unexpected one.
829
830 2002/04/24  Nick Drochak <ndrochak@gol.com>
831
832         * IntegerFormatterTest.cs: Remove Console.WriteLines and use 
833         AssertEquals() instead.
834
835 2002-04-22  Nick Drochak  <ndrochak@gol.com>
836
837         * StringTest.cs: Add unique markers to Assert messages.
838
839 2002-04-09  Nick Drochak  <ndrochak@gol.com>
840
841         * ArrayTest.cs: Remove BinarySearch test on unsorted arrays. The
842         behavior is undefined if the array isn't sorted.
843
844 2002/04/09  Nick Drochak <ndrochak@gol.com>
845
846         * DecimalTest.cs: Use AssertEquals() for better diagnostic message.
847
848 2002-04-09  Nick Drochak  <ndrochak@gol.com>
849
850         * ByteTest.cs: Use AssertEquals() for better diagnostic message.
851
852 2002-04-08  Nick Drochak  <ndrochak@gol.com>
853
854         * EnumTest.cs: Add a few tests for differently underlying types and
855         the [Flags] attribute to test ToString().
856
857 2002-04-08  Nick Drochak  <ndrochak@gol.com>
858
859         * EnumTest.cs: Add test for ToString for the case where the enum
860         has [Flags] on it, and a mask value is used.
861
862 2002-04-04  Nick Drochak  <ndrochak@gol.com>
863
864         * EnumTest.cs: Change one Assert() message string so the two are 
865         unique. And clean up exception catching logic.
866
867 2002/03/28  Nick Drochak <ndrochak@gol.com>
868
869         * IntegerFormatterTest.cs: Eliminate warnings about unused exception
870         variables.
871
872 2002-03-28  Nick Drochak  <ndrochak@gol.com>
873
874         * EnumTest.cs(TestFormat): Use Fail() instead of AssertEquals() in
875         try-catch blocks. Add test to check if correct exception is being 
876         thrown.
877
878 2002/03/18  Nick Drochak <ndrochak@gol.com>
879
880         * ByteTest.cs:
881         * Int64Test.cs:
882         * SByteTest.cs: Do not hard code the "$" as the currency symbol to
883         use for Parse tests. This isn not really the fix we need. These
884         number formats vary wildly depending on the culture the system
885         runs with.  We need a much better strategy here for testing this.
886         * Int32Test.cs: Use #if NOTYET-#endif to disable a test.  This removes
887         an annoying compile warning.
888
889 2002-03-18  Nick Drochak  <ndrochak@gol.com>
890
891         * DoubleTest.cs:
892         * EnumTest.cs: Add unique identifier to Assert()'s. Needed to find
893         which one was faling on Linux.
894
895 2002-03-12  Nick Drochak  <ndrochak@gol.com>
896
897         * ArrayTest.cs: Add tests for IList methods and for enumerator on
898         an array with non-zero lower bounds.
899
900 2002-03-09  Nick Drochak  <ndrochak@gol.com>
901
902         * ArrayTest.cs: Enable the enumerator test and include test for
903         Multi-dimensional array enumerator.  Also include test for
904         mutation _not_ invalidating the enumerator.
905
906 2002-03-09  Martin Baulig  <martin@gnome.org>
907
908         * Int16Test.cs, Int32Tests.cs, UInt16Tests.cs: Use "en-US" culture and
909         don't let the user override.
910
911         * Int32Tests.cs: Cleanup. Use unique names in Assert()s, use AssertEquals()
912         where appropriate etc.
913
914 2002-03-08  Martin Baulig  <martin@gnome.org>
915
916         * StringTest.cs: More String.Split tests.
917
918 2002-03-07  Martin Baulig  <martin@gnome.org>
919
920         * StringTest.cs: Added a few more tests for the bug fixes I just
921         committed to String.cs.
922
923 2002-03-07  Martin Baulig  <martin@gnome.org>
924
925         * ArrayTest.cs: Fixed the FIXME in test #E05.
926
927 2002-03-06  Duco Fijma  <duco@lorentz.xs4all.nl>
928         * CharEnumeratorTest.cs: made test regarding out-of-bounds checking
929         a bit stronger (new failures fixed in CharEnumerator.cs).
930
931 2002-03-06  Martin Baulig  <martin@gnome.org>
932
933         * ArrayTest.cs (TestSetValue4): Added testcases #M94-#M96 for Array.Copy.
934
935         * ArrayTest.cs (TestCopyTo): Added testcases #F10-#F13 for arrays with
936         non-zero lower bounds.
937
938         * ArrayTest.cs (TestCopyTo): Added test for copying an empty array
939         to an empty array.
940
941 2002-03-06  Martin Baulig  <martin@gnome.org>
942
943         * ArrayTest.cs: Use unique labels for all the tests.
944         (TestSetValue4): A big new testcase.
945
946 2002-03-06  Nick Drochak  <ndrochak@gol.com>
947
948         * VersionTest.cs: Fix for mscorlib behavior vs. docs. CompareTo(null)
949         is legal.
950         * UInt16Test.cs:
951         * UInt32Test.cs:
952         * UInt64Test.cs: Use NumberFormatInfo.InvariantInfo.CurrencySymbol
953         where "$" was used. Should help suppress false negatives on systems
954         where "$" is not the currency symbol.
955
956 2002-03-04  Duco Fijma  <duco@lorentz.xs4all.nl>
957         * VersionTest.cs: created test cases for System.Version
958
959 2002-03-03  Duco Fijma  <duco@lorentz.xs4all.nl>
960         * CharEnumeratorTest.cs: completed the test cases
961
962 2002-03-03  Nick Drochak  <ndrochak@gol.com>
963
964         * DateTimeTest.cs: make static member non-static -- wouldn't work on 
965         Windows if it was static. Doesn't _need_ to be static anyway.
966
967 2002-03-01  Duco Fijma  <duco@lorentz.xs4all.nl>
968         * AttributeTest.cs: created, far from complete. 
969         * CharEnumeratorTest.cs: created. Contains just the basic case.
970         * AllTests.cs: added the two new tests above
971
972 2002-03-01  Duco Fijma  <duco@lorentz.xs4all.nl>
973         * BitConverterTest.cs: added one test for bug fix made to BitConverter
974         * class.
975
976 2002-03-01  Martin Baulig  <martin@gnome.org>
977
978         * ArrayTest.cs: Commented out a few bits which are not yet implemented and
979         marked them with FIXME's.
980
981         * DecimalTest.cs, DecimalTest2.cs: Added zero-arg constructors.
982
983         * MartinTests.cs: Enabled ArrayTests.cs.
984
985 2002-03-01  Duco Fijma <duco@lorentz.xs4all.nl>
986
987         * BitConverterTest.cs: completed test cases
988
989 2002-03-01  Martin Baulig  <martin@gnome.org>
990
991         * MartinTests.cs: 15 tests currently work on Linux, call them all and
992         provide comments for the non-working tests.
993
994 2002-02-28  Duncan Mak  <duncan@ximian.com>
995
996         * MathTest.cs: Committed for Jon Guymon <gnarg@slackworks.com>.
997
998 2002-02-28  Martin Baulig  <martin@gnome.org>
999
1000         * String.cs (TestCompare): Added a few tests.
1001         (TestFormat): Please don't compare two strings with Assert (... == ...),
1002         use AssertEquals instead - this gives you a better idea what went wrong
1003         if the test fails.
1004
1005 2002-02-28  Nick Drochak  <ndrochak@gol.com>
1006
1007         * BitConverterTest.cs: Test was trying to catch the wrong Exception.
1008         The MSDN docs clearly say ArgumentOutOfRangeException, but that's
1009         not what get's thrown.
1010
1011         * DoubleTest.cs: Get working against mscorlib reference.
1012
1013 2002-02-27  Duco Fijma <duco@lorentz.xs4all.nl>
1014         * GuidTest.cs: changed to reflect new meaning of Guid.ToString("")
1015         and Guid.ToString(null)
1016
1017 2002-02-26  Martin Baulig  <martin@gnome.org>
1018
1019         * MartinTests.cs: New file. This contains all the test which already
1020         work on Linux.
1021
1022         * String.cs: Added two testcases to TestTrim(), TestTrimStart() and
1023         TestTrimEnd().
1024
1025 2002-02-26  Martin Baulig  <martin@gnome.org>
1026
1027         * DateTimeTest.cs: Added testcases for the parsers. Use the invariant
1028         culture to run this test suite.
1029
1030         * TimeZoneTest.cs: Use the invariant culture to run this test suite.
1031
1032 2002-02-26  Duco Fijma <duco@lorentz.xs4all>
1033         * TimeSpanTest.cs: added test from TimeSpan.FromMilliseconds
1034
1035 2002-02-26  Martin Baulig  <martin@gnome.org>
1036
1037         * DateTimeTest.cs: New test.
1038
1039         * TimeZoneTest.cs: New test.
1040
1041 2002-02-25  Duco Fijma <duco@lorentz.xs4all.nl>
1042         * GuidTest.cs: all methods of System.Guid are now covered
1043         * BitConverterTest.cs: created, not yet complete
1044
1045 2002-02-21  Duco Fijma <duco@lorentz.xs4all.nl>
1046         * GuidTest.cs: changed according to fix in System.Guid
1047
1048 2002-02-20  Nick Drochak  <ndrochak@gol.com>
1049
1050         * Int64Test.cs: One array was giving us trouble.  Not sure why, but
1051         it's related to the number of elements in an Array.  For short Arrays
1052         the compiler doesn't use the PrivateImplmentationDetails struct,
1053         but for longer ones it does.  That's when our corlib fails. I paired
1054         down the array for now.
1055
1056 2002-02-19  Duco Fijma <duco@lorentz.xs4all.nl>
1057         * GuidTest.cs: added a few cases
1058
1059 2002-02-18  Nick Drochak  <ndrochak@gol.com>
1060
1061         * GuidTest.cs: Fix compile error.  Needed to cast the null in the call to
1062         constructor to avoid ambiguity.
1063
1064 2002-02-11  Nick Drochak  <ndrochak@gol.com>
1065
1066         * Int64Test.cs: Various fixes to make tests work against the ms corlib.
1067         Currency Symbol tests seem to be system dependant.  Not sure if this
1068         will work on other systems, so please test it if you can. The most
1069         disturbing one is negative numbers.  Should they be (n) or -n ?
1070
1071 2002-02-10  Nick Drochak  <ndrochak@gol.com>
1072
1073         * AllTests.cs: Add Int64Test to the Suite
1074         * Int64Test.cs: Change static member to instance member. This was
1075         causing NUnitConsole some grief.  Should be instance member anyway.
1076
1077 2002-02-09  Nick Drochak  <ndrochak@gol.com>
1078
1079         * ByteTest.cs:
1080         * Int16Test.cs:
1081         * Int32Test.cs:
1082         * SByteTest.cs:
1083         * UInt16Test.cs:
1084         * UInt32Test.cs:
1085         * UInt64Test.cs: Fixed tests where a "$" was hard coded.  Change it to
1086         use NumberFormatInfo.CurrentInfo.CurrencySymbol.  Also used
1087         NumberFormatInfo.InvariantInfo.CurrencySymbol where appropriate. These
1088         tests all pass now with mscorlib.
1089
1090 2002-01-06  Nick Drochak  <ndrochak@gol.com>
1091
1092         * ResolveEventArgsTest.cs: New test.
1093         * AllTests.cs: Added new test to suite.
1094
1095 2001-12-27  Nick Drochak <ndrochak@gol.com>
1096
1097         * UInt32Test.cs: Added messages to Asserts()'s to find out which one was faliing.
1098
1099 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
1100
1101         * UInt32Test.cs: Added tests for UInt32.Parse.
1102
1103         * Int32Test.cs: Added tests for Int32.Parse for various cases.
1104
1105 2001-12-08  Nick Drochak  <ndrochak@gol.com>
1106
1107         * ByteTest.cs: Added messages to Assert()'s to find out which one was failing.
1108
1109 2001-11-28  Nick Drochak <ndrochak@gol.com>
1110
1111         * Int16Test.cs Int32Test.cs SByteTest.cs: Surgically removed tests that rely on culture of system.  These need to be crafted a bit differently.
1112
1113 2001-11-27  Nick Drochak  <ndrochak@gol.com>
1114
1115         * SByteTest.cs: Add messages to Assert()'s so we can tell where the tests fail.
1116
1117 2002-02-21  Bob Doan  <bdoan@sicompos.com>
1118
1119         * BooleanTest.cs: Added New test suite
1120         * AllTests.cs: Added new Boolean test to suite.
1121
1122 2002-02-24  Bob Doan  <bdoan@sicompos.com>
1123
1124         * BooleanTest.cs: Use correct argument order in AssertEquals
1125         * AllTests.cs: Added new Double test to suite.
1126         * DoubleTest.cs: Add new test suite
1127
1128 2002-02-24  Bob Doan  <bdoan@sicompos.com>
1129
1130         * DoubleTest.cs: Added parse tests to Double test suite, removed GetHashCodeTests