2004-06-06 Sebastien Pouliot <sebastien@ximian.com>
[mono.git] / mcs / class / corlib / Test / System / ChangeLog
index af030dee226df57121f032cd41ad1d72c4879a96..ac59eb5039fe0f3fa034059b39b7f18b71dd6033 100644 (file)
@@ -1,3 +1,122 @@
+2004-06-06  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * DecimalTest.cs: Added tests for default ToString(). Added tests when
+       Decimal is casted to an integer (trunc not rounded). Added tests to
+       parse very small values (#59301).
+       * ByteTest.cs: Added tests for default ToString(String.Empty).
+       * DoubleTest.cs: Added tests for default ToString(String.Empty).
+       * Int16Test.cs: Added tests for default ToString(String.Empty).
+       * Int32Test.cs: Added tests for default ToString(String.Empty).
+       * Int64Test.cs: Added tests for default ToString(String.Empty).
+       * SByteTest.cs: Added tests for default ToString(String.Empty).
+       * SingleTest.cs: Added tests for default ToString(String.Empty).
+       * StringTest.cs: Added more cases for Join (null separator and null 
+       values).
+       * UInt16Test.cs: Added tests for default ToString(String.Empty).
+       * UInt32Test.cs: Added tests for default ToString(String.Empty).
+       * UInt64Test.cs: Added tests for default ToString(String.Empty).
+
+2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * ConvertTest.cs: Added tests to convert min/max values of integer
+       types to strings in all bases.
+       * SByteTest.cs: Added test to parse min/max values.
+
+2004-06-04  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * MathTest.cs: Added case to check for negative 0 (double) in
+       IEEERemainder - including when dividend is negative.
+       * TimeSpanTest.cs: Added more asserts in existing tests cases.
+       Added case to check for ToString with MinValue and MaxValue.
+
+2004-06-02  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * TimeSpanTest.cs: Added tests for overflow checking and parsing
+       only days (LAMESPEC).
+
+2004-06-01  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * TimeSpanTest.cs: Added tests for exceptions in FromXXX methods
+       which are very badly documented.
+
+2004-05-30  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * ArrayTest.cs: Added tests for null values in BinarySearch.
+       * Byte.cs: Added test for default ToString format value.
+
+2004-05-30  David Sheldon <dave-mono@earth.li>
+
+  * DecimalTest.cs: Moved the rounding test that fails due to 
+    bug 37744 into its own test, and annotated it as ignored until
+    the bug is fixed.
+
+2004-05-29  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * ConvertTest.cs: Added new parsing tests including special case for
+       Convert.ToSByte. Added test to ChangeType to Empty.
+       * Int64Test.cs: Added new test cases for overflows. 
+
+2004-05-28  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * ConvertTest.cs: Removed extra 0 from ToInt16_MinValue. Added overflow
+       testing for integer types convertion. Added new tests for pasring 
+       MinValue and MaxValue of integer types in all supported bases. Added 
+       case for a prefixed hexadecimal without a number.
+
+2004-05-27  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * ConvertTest.cs: More complete tests for unsigned type convertion wrt
+       -0, base != 10, ... Added tests for int16 limits in various bases.
+
+2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * ArrayTest.cs: Added integer overflow tests for LastIndexOf.
+       * ConvertTest.cs: Added case where 0X00 is valid when parsed in base16
+
+2004-05-25  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * ArrayTest.cs: Added tests to check for integer overflow in Clear,
+       Copy and Reverse.
+       * BitConverterTest.cs: Added test to check for possible integer 
+       overflow in ToString (byte,int,int)
+       * ConvertTest.cs: New tests for prefixed hexadecimal strings and
+       negative byte convertion.
+       * StringTest.cs: Added new tests for integer overflow and negatives.
+       Added tests for special cases like s.LastIndexOf ('o', s.Length, 1)
+       fail but s.LastIndexOf ("o", s.Length, 1) works.
+
+2004-05-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+       * DateTimeTest.cs: test for bug 56436.
+
+2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * ArrayTest.cs: Added a new test to clear outside the bound of a
+       multidimentional array.
+       * BooleanTest.cs: Added new test to compare booleans using Equals
+       and == (case of True!=True). Converted to NUnit2 format.
+       * BitConverterTest.cs: Added new tests for negative integers and 
+       integer overflow in To... methods. Added new boolean convertion
+       tests.
+       * BufferTest.cs: Added new tests for integer overflow in BlockCopy.
+
+2004-05-22  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * ArrayTest.cs: Added a new test to clear a jagged array and a 
+       multidimentional array.
+       * IntPtrTest.cs: New. Tests for 32/64 bits behaviour of IntPtr.
+       * SingleTest.cs: Added tests to compare positive 0 and negative 0.
+       * UIntPtrTest.cs: New. Tests for 32/64 bits behaviour of UIntPtr.
+
+2004-05-21  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * DecimalTest.cs: Added new unit test to check for correct rounding.
+       It appears that Decimal.To... trunk but Convert.To... use banking
+       rounding (so we can't use Convert.To... to implement To...). But
+       IConvertible does share Convert.To behaviour. Added tests for negative
+       values and large number parsing (> Int64).
+       * SingleTest.cs: New. Unit tests for Single (adapted from Double).
+
 2004-05-20  Sebastien Pouliot  <sebastien@ximian.com>
 
        * AppDomainTest.cs: Renamed Unload to TearDown (like it's attribute)