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