ChangeLog 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. 2006-02-03 Atsushi Enomoto <[email protected]>
  2. * UTF8EncodingTest.cs : added test for insufficient bytes for
  3. flush=true and leftOver!='\0' case.
  4. 2006-01-24 Atsushi Enomoto <[email protected]>
  5. * UTF7EncodingTest.cs : added test for bug #77315.
  6. * UTF8EncodingTest.cs : added test for bug #77315. Also, now a
  7. bunch of tests are working (while they are marked as NotDotNet
  8. under 1.1 profile).
  9. 2006-01-20 Raja R Harinath <[email protected]>
  10. * UnicodeEncodingTest.cs (TestMaxByteCount): Remove extra declaration.
  11. 2006-01-20 Atsushi Enomoto <[email protected]>
  12. * UTF8EncodingTest.cs : added CloneNotReadOnly().
  13. 2006-01-19 Atsushi Enomoto <[email protected]>
  14. * UnicodeEncodingTest.cs, DecoderReplacementFallbackBufferTest.cs,
  15. EncoderReplacementFallbackBufferTest.cs : tests were fixed but
  16. "NotWorking" were not marked correctly.
  17. 2006-01-19 Atsushi Enomoto <[email protected]>
  18. * UTF7EncodingTest.cs UTF8EncodingTest.cs UnicodeEncodingTest.cs :
  19. due to the introduction of fallback, some of their internals have
  20. changed. Thus marked some tests as NotWorking.
  21. * DecoderReplacementFallbackBufferTest.cs,
  22. EncoderReplacementFallbackBufferTest.cs :
  23. some behaviors have changed since beta2, so marked old tests as
  24. NotWorking.
  25. 2005-12-05 Sebastien Pouliot <[email protected]>
  26. * StringBuilderTest.cs: Test case MaxCapacity_Overflow3 doesn't work
  27. under MS 1.1 SP1 (it should throw an ArgumentOutOfRangeException) but
  28. it does work under Mono and MS 2.0 (final). Tagged as "NotWorking".
  29. 2005-11-22 Atsushi Enomoto <[email protected]>
  30. * EncoderReplacementFallbackTest.cs :
  31. Added Latin1 replacement test.
  32. Updated some test results changed from beta2 to RTM.
  33. * DecoderReplacementFallbackTest.cs : the same updates.
  34. 2005-11-16 Atsushi Enomoto <[email protected]>
  35. * UTF8EncodingTest.cs : Simply replaced all ArgumentException with
  36. switched alias (it is DecodefFallbackException in NET_2_0).
  37. 2005-11-15 Atsushi Enomoto <[email protected]>
  38. * EncoderReplacementFallbackBufferTest.cs : new test (it's weird, but
  39. mostly identical to DecoderReplacementFallbackBufferTest...)
  40. 2005-11-15 Atsushi Enomoto <[email protected]>
  41. * DecoderReplacementFallbackBufferTest.cs : new test.
  42. 2005-11-15 Atsushi Enomoto <[email protected]>
  43. * TestEncoding.cs,
  44. DecoderReplacementFallbackTest.cs,
  45. EncoderReplacementFallbackTest.cs : new 2.0 tests.
  46. 2005-08-25 Atsushi Enomoto <[email protected]>
  47. * UTF8EncodingTest.cs : added GetCharsFEFF().
  48. 2005-06-21 Ben Maurer <[email protected]>
  49. * StringBuilderTest.cs: Test replacing with a longer string.
  50. 2005-05-06 Ben Maurer <[email protected]>
  51. * StringBuilderTest.cs (MaxCapacity_Overflow3): Test for #72244.
  52. 2005-01-21 Ben Maurer <[email protected]>
  53. * StringBuilderTest.cs (CapacityFromString): This relies on impl
  54. specific behavior. Rewrite the test.
  55. 2005-01-11 Gonzalo Paniagua Javier <[email protected]>
  56. * System.Text/StringBuilderTest.cs: new tests for capacity when the
  57. StringBuilder is created from a string.
  58. 2005-01-10 Gonzalo Paniagua Javier <[email protected]>
  59. * StringBuilderTest.cs: patch to test for capacity being exceeded.
  60. 2004-06-23 Sebastien Pouliot <[email protected]>
  61. * UTF7EncodingTest.cs: Added 3 more test cases from RFC1642 to decode
  62. and re-encode UTF7 from/to unicode.
  63. 2004-06-07 Atsushi Enomoto <[email protected]>
  64. * UTF8EncodingTest.cs : Added TestThrowOnInvalid().
  65. 2004-05-26 Sebastien Pouliot <[email protected]>
  66. * StringBuilderTest.cs: Added unit tests to be sure integer overflows
  67. are catched.
  68. 2004-05-20 Sebastien Pouliot <[email protected]>
  69. * UTF7EncodingTest.cs, UnicodeEncodingTest.cs: Removed unused SetUp
  70. and TearDown to facilitate searches.
  71. 2004-05-14 Sebastien Pouliot <[email protected]>
  72. * UTF8EncodingTest.cs: Test both characters in test 2.1.4.
  73. 2004-04-14 Sebastien Pouliot <[email protected]>
  74. * UTF8EncodingTest.cs: Ajusted test 3.3.6 and 3.3.7 because MS accept
  75. invalid UTF8 (when it shouldn't) and Mono doesn't. Both case are now
  76. accepted by the unit tests.
  77. 2004-04-14 Sebastien Pouliot <[email protected]>
  78. * UTF8EncodingTest.cs: Added 70 new unit tests from UTF-8-test.txt
  79. (available from http://www.cl.cam.ac.uk/~mgk25/). Tests are adapted
  80. so MS implementation pass them all.
  81. 2004-03-19 Dick Porter <[email protected]>
  82. * UnicodeEncodingTest.cs: Test for character counts on subranges
  83. of arrays with a BOM at the start of the array.
  84. 2004-03-10 Juraj Skripsky <[email protected]>
  85. * StringBuilderTest.cs: added new test for bug in Insert.
  86. 2004-01-23 Gonzalo Paniagua Javier <[email protected]>
  87. * StringBuilderTest.cs: added test for bug #53240.
  88. 2004-01-14 Gonzalo Paniagua Javier <[email protected]>
  89. * StringBuilderTest.cs: added tests for the couple of bugs found in the
  90. new StringBuilder implementation.
  91. 2003-05-14 Nick Drochak <[email protected]>
  92. * UTF7EncodingTest.cs:
  93. * UTF8EncodingTest.cs: added from Patrick Kalkman <[email protected]>
  94. 2003-05-10 Gonzalo Paniagua Javier <[email protected]>
  95. * StringBuilderTest.cs: added replace tests from bug #41397 by
  96. <[email protected]>>.
  97. 2003-03-05 Gonzalo Paniagua Javier <[email protected]>
  98. * ASCIIEncodingTest.cs: added a couple of asserts fot zero-length
  99. arrays.
  100. 2003-02-05 Nick Drochak <[email protected]>
  101. * StringBuilderTest.cs: Test for specific exception using Nunit verson
  102. 2 style Attribute.
  103. 2003-01-30 Zoltan Varga <[email protected]>
  104. * StringBuilderTest.cs: added test for passing a negative capacity to
  105. the constructor.
  106. 2002-12-21 Nick Drochak <[email protected]>
  107. * all: make tests build and run under nunit2
  108. 2002-12-12 Jackson Harper <[email protected]>
  109. * AllTests.cs: Comment out UTF8... test (it does not exist)
  110. 2002-03-17 Mike Kestner <[email protected]>
  111. * ASCIIEncodingTest.cs : New suite for ASCIIEncoding.
  112. * AllTests.cs : Add the new suite.
  113. 2002-02-10 Nick Drochak <[email protected]>
  114. * AllTests.cs: Remove StringBuilderTest suite. There's a major failure
  115. when it's included and the test errors aren't displayed.
  116. 2002-02-09 Nick Drochak <[email protected]>
  117. * StringBuilderTest.cs: Fixed tests that were failing against mscorlib.