ChangeLog 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. 2005-11-16 Atsushi Enomoto <[email protected]>
  2. * UTF8EncodingTest.cs : Simply replaced all ArgumentException with
  3. switched alias (it is DecodefFallbackException in NET_2_0).
  4. 2005-11-15 Atsushi Enomoto <[email protected]>
  5. * EncoderReplacementFallbackBufferTest.cs : new test (it's weird, but
  6. mostly identical to DecoderReplacementFallbackBufferTest...)
  7. 2005-11-15 Atsushi Enomoto <[email protected]>
  8. * DecoderReplacementFallbackBufferTest.cs : new test.
  9. 2005-11-15 Atsushi Enomoto <[email protected]>
  10. * TestEncoding.cs,
  11. DecoderReplacementFallbackTest.cs,
  12. EncoderReplacementFallbackTest.cs : new 2.0 tests.
  13. 2005-08-25 Atsushi Enomoto <[email protected]>
  14. * UTF8EncodingTest.cs : added GetCharsFEFF().
  15. 2005-06-21 Ben Maurer <[email protected]>
  16. * StringBuilderTest.cs: Test replacing with a longer string.
  17. 2005-05-06 Ben Maurer <[email protected]>
  18. * StringBuilderTest.cs (MaxCapacity_Overflow3): Test for #72244.
  19. 2005-01-21 Ben Maurer <[email protected]>
  20. * StringBuilderTest.cs (CapacityFromString): This relies on impl
  21. specific behavior. Rewrite the test.
  22. 2005-01-11 Gonzalo Paniagua Javier <[email protected]>
  23. * System.Text/StringBuilderTest.cs: new tests for capacity when the
  24. StringBuilder is created from a string.
  25. 2005-01-10 Gonzalo Paniagua Javier <[email protected]>
  26. * StringBuilderTest.cs: patch to test for capacity being exceeded.
  27. 2004-06-23 Sebastien Pouliot <[email protected]>
  28. * UTF7EncodingTest.cs: Added 3 more test cases from RFC1642 to decode
  29. and re-encode UTF7 from/to unicode.
  30. 2004-06-07 Atsushi Enomoto <[email protected]>
  31. * UTF8EncodingTest.cs : Added TestThrowOnInvalid().
  32. 2004-05-26 Sebastien Pouliot <[email protected]>
  33. * StringBuilderTest.cs: Added unit tests to be sure integer overflows
  34. are catched.
  35. 2004-05-20 Sebastien Pouliot <[email protected]>
  36. * UTF7EncodingTest.cs, UnicodeEncodingTest.cs: Removed unused SetUp
  37. and TearDown to facilitate searches.
  38. 2004-05-14 Sebastien Pouliot <[email protected]>
  39. * UTF8EncodingTest.cs: Test both characters in test 2.1.4.
  40. 2004-04-14 Sebastien Pouliot <[email protected]>
  41. * UTF8EncodingTest.cs: Ajusted test 3.3.6 and 3.3.7 because MS accept
  42. invalid UTF8 (when it shouldn't) and Mono doesn't. Both case are now
  43. accepted by the unit tests.
  44. 2004-04-14 Sebastien Pouliot <[email protected]>
  45. * UTF8EncodingTest.cs: Added 70 new unit tests from UTF-8-test.txt
  46. (available from http://www.cl.cam.ac.uk/~mgk25/). Tests are adapted
  47. so MS implementation pass them all.
  48. 2004-03-19 Dick Porter <[email protected]>
  49. * UnicodeEncodingTest.cs: Test for character counts on subranges
  50. of arrays with a BOM at the start of the array.
  51. 2004-03-10 Juraj Skripsky <[email protected]>
  52. * StringBuilderTest.cs: added new test for bug in Insert.
  53. 2004-01-23 Gonzalo Paniagua Javier <[email protected]>
  54. * StringBuilderTest.cs: added test for bug #53240.
  55. 2004-01-14 Gonzalo Paniagua Javier <[email protected]>
  56. * StringBuilderTest.cs: added tests for the couple of bugs found in the
  57. new StringBuilder implementation.
  58. 2003-05-14 Nick Drochak <[email protected]>
  59. * UTF7EncodingTest.cs:
  60. * UTF8EncodingTest.cs: added from Patrick Kalkman <[email protected]>
  61. 2003-05-10 Gonzalo Paniagua Javier <[email protected]>
  62. * StringBuilderTest.cs: added replace tests from bug #41397 by
  63. <[email protected]>>.
  64. 2003-03-05 Gonzalo Paniagua Javier <[email protected]>
  65. * ASCIIEncodingTest.cs: added a couple of asserts fot zero-length
  66. arrays.
  67. 2003-02-05 Nick Drochak <[email protected]>
  68. * StringBuilderTest.cs: Test for specific exception using Nunit verson
  69. 2 style Attribute.
  70. 2003-01-30 Zoltan Varga <[email protected]>
  71. * StringBuilderTest.cs: added test for passing a negative capacity to
  72. the constructor.
  73. 2002-12-21 Nick Drochak <[email protected]>
  74. * all: make tests build and run under nunit2
  75. 2002-12-12 Jackson Harper <[email protected]>
  76. * AllTests.cs: Comment out UTF8... test (it does not exist)
  77. 2002-03-17 Mike Kestner <[email protected]>
  78. * ASCIIEncodingTest.cs : New suite for ASCIIEncoding.
  79. * AllTests.cs : Add the new suite.
  80. 2002-02-10 Nick Drochak <[email protected]>
  81. * AllTests.cs: Remove StringBuilderTest suite. There's a major failure
  82. when it's included and the test errors aren't displayed.
  83. 2002-02-09 Nick Drochak <[email protected]>
  84. * StringBuilderTest.cs: Fixed tests that were failing against mscorlib.