2004-06-06 Sebastien Pouliot <sebastien@ximian.com>
[mono.git] / mcs / class / corlib / Test / System / ChangeLog
index 4c6c7fc238b735585b0fabb06db6deedcdeb6684..ac59eb5039fe0f3fa034059b39b7f18b71dd6033 100644 (file)
@@ -1,3 +1,215 @@
+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)
+       to ease searches.
+       * ConvertTest.cs: Added new unit tests for integer overflow in To/From
+       Base64CharArray. Added new test for wide char. Exploded some tests in
+       NUnit2 format (to ease add new tests).
+
+2004-05-19  Gert Driesen (drieseng@users.sourceforge.net)
+       
+       * AttributeTest.cs: added tests for Inherited and
+       AllowMultiple
+
+2004-05-19  Gert Driesen (drieseng@users.sourceforge.net)
+
+       * AttributeTest.cs: formatting, and remove commented
+       code
+
+2005-05-18  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * BufferTest.cs: Added missing tests for BlockCopy exceptions.
+
+2004-04-27  Nick Drochak <ndrochak@gol.com>
+
+       * ConvertTest.cs: Remove compiler warnings.
+
+2004-04-25  Nick Drochak <ndrochak@gol.com>
+
+       * MathTest.cs: Check precision only so far.
+
+2004-04-22  Lluis Sanchez Gual  <lluis@ximian.com>
+
+       * AppDomainSetupTest.cs: Changed again test 3 to test that the appdomain is 
+         relative to the current dir, rather than the temp dir. I confirment that
+         this is how ms.net works.
+
+2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
+
+       * TypeTest.cs: Add new regression test for bug #55874.
+
+2004-04-12 David Sheldon <dave-mono@earth.li>
+       * TimeZoneTest.cs: Make pass when in "GMT".
+  
+2004-04-09 David Sheldon <dave-mono@earth.li>
+    * ConvertTest.cs: Tests for Convert.ToInt32(string, base), with
+       signs on the strings.
+
+2004-04-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+       * TypeTest.cs: enumerated the tests.
+
+2004-04-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+       * EnvironmentTest.cs: use uppercase for PATH. Added test to check the
+       expected substitutions.
+
+2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * EnvironmentTest.cs: New. Add unit tests for ExpandEnvironmentVariables.
+
+2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
+
+       * GuidTest.cs: Test constructor when the input string is in format "P" 
+         or "N".
+
+2004-03-23  Lluis Sanchez Gual  <lluis@ximian.com>
+
+       * ByteTest.cs, Int32Test.cs, Int64Test, SingleFormatterTest.cs,
+         UInt16Test.cs, UInt32Test.cs, UInt64Test.cs: Made some tests depend on the
+         current culture.
+
+2004-03-22  Dick Porter  <dick@ximian.com>
+
+       * DateTimeTest.cs (System): Test the MM-dd-yyyy date parse format.
+
+2004-03-21  Jackson Harper  <jackson@ximian.com>
+
+       * DoubleFormatterTest.cs: test setting the number of decimal
+       digits.
+
+2004-03-10  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * ConvertTest.cs: Added another test showing that input length 
+       can't easily be used to check for valid base64 encoding.
+
+2004-03-10  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * ConvertTest.cs: Added a new unit tests for FromBase64String and 
+       FromBase64CharArray to check for ignored characters (tab, lf, cr 
+       and spaces). Splitted existing tests into smaller tests.
+
 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
 
        * StringTest.cs: Add regression test for bug #54988.