ChangeLog 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  1. 2007-06-24 Gert Driesen <[email protected]>
  2. * CultureInfoTest.cs: Added exception tests when invoking NumberFormat
  3. or DateTimeFormat on a neutral culture. Added tests for bug #81930.
  4. No longer derive from deprecated Assertion class. Added tests for
  5. GetCultureInfo (2.0).
  6. 2007-06-01 Atsushi Enomoto <[email protected]>
  7. * CalendarTest.cs : test for bug #81783 and AddYears() for leap year
  8. (similar issue).
  9. 2007-05-31 Rolf Bjarne Kvinge <[email protected]>
  10. * DateTimeFormatInfo.cs: Added EraName.
  11. 2007-05-25 Atsushi Enomoto <[email protected]>
  12. * IdnMappingTest.cs : new test.
  13. 2007-05-15 Atsushi Enomoto <[email protected]>
  14. * RegionInfoTest.cs : new tests.
  15. 2007-03-06 Atsushi Enomoto <[email protected]>
  16. * CompareInfoTest.cs : added test for bug #79714.
  17. 2007-02-15 Atsushi Enomoto <[email protected]>
  18. * CompareInfoTest.cs : added test for bug #80865.
  19. 2007-01-25 Atsushi Enomoto <[email protected]>
  20. * CompareInfoTest.cs : added test for bug #80612.
  21. 2007-01-22 Atsushi Enomoto <[email protected]>
  22. * CompareInfoTest.cs : Added Compare() tests for hyphens.
  23. Removed NotWorking from previous new test (its existence wasn't
  24. even recognized until today).
  25. 2007-01-11 Gert Driesen <[email protected]>
  26. * CompareInfoTest.cs: Added test for checking valid CompareOptions for
  27. GetSortKey.
  28. 2006-12-25 Atsushi Enomoto <[email protected]>
  29. * CompareInfoTest.cs : added tests for OrdinalIgnoreCase versions
  30. of IndexOf() and LastIndexOf(). Added Ordinal LastIndexOf() tests.
  31. 2006-11-27 Atsushi Enomoto <[email protected]>
  32. * CompareInfoTest.cs : why there was "return" before OrdinalIgnoreCase
  33. tests ...
  34. 2006-06-08 Atsushi Enomoto <[email protected]>
  35. * DateTimeFormatInfoTest.cs : added test for bug #78569.
  36. 2006-04-25 Atsushi Enomoto <[email protected]>
  37. * CompareInfoTest.cs : seems like Microsoft had introduced several
  38. bugs in CompareInfo, so marked many of them as NotDotNet.
  39. 2006-04-10 Atsushi Enomoto <[email protected]>
  40. * CultureInfoTest.cs : added test for bug #69652.
  41. 2006-03-21 Atsushi Enomoto <[email protected]>
  42. * CalendarTest.cs : added test for bug #76252.
  43. 2006-01-25 Atsushi Enomoto <[email protected]>
  44. * CultureInfoTest.cs : added test for bug #77347.
  45. 2005-12-08 Sebastien Pouliot <[email protected]>
  46. * DaylightTimeTest.cs: New. Serialization interop test cases.
  47. 2005-12-06 Sebastien Pouliot <[email protected]>
  48. * TextInfoTest.cs: Added new tests for serialization and for new 2.0
  49. features.
  50. 2005-12-05 Atsushi Enomoto <[email protected]>
  51. * CompareInfoTest.cs : split the last case in NullCharacter() out
  52. and marked it as NotDotNet (.NET is inconsistent between Compare
  53. and IndexOf).
  54. 2005-11-14 Atsushi Enomoto <[email protected]>
  55. * CompareInfoTest.cs : added NullCharacter() for bug #76702.
  56. 2005-11-14 Atsushi Enomoto <[email protected]>
  57. * CompareInfoTest.cs : added test for Compare() w/ OrdinalIgnoreCase.
  58. 2005-11-14 Atsushi Enomoto <[email protected]>
  59. * CompareInfoTest.cs : added more tests for some specific cultures
  60. (say, Japanese) that have replacement contraction in ASCII range
  61. and caused incorrect results for LastIndexOf() and all dependent
  62. members.
  63. 2005-10-14 Ben Maurer <[email protected]>
  64. * DateTimeFormatInfoTest.cs: New test to make sure we do not
  65. return the same array from GetAllDateTimePatterns.
  66. 2005-09-27 Atsushi Enomoto <[email protected]>
  67. * CompareInfoTest.cs : added testcase for bug #76243.
  68. 2005-09-20 Atsushi Enomoto <[email protected]>
  69. * CompareInfoTest.cs : added empty string cases for IsPrefix/IsSuffix.
  70. 2005-09-09 Atsushi Enomoto <[email protected]>
  71. * CompareInfoTest.cs : added another test for IsSuffix() that I found.
  72. 2005-08-14 Gert Driesen <[email protected]>
  73. * TextInfoTest.cs: Added ListSeparator test.
  74. 2005-08-11 Atsushi Enomoto <[email protected]>
  75. * CultureInfoTest.cs : added OptionalCalendars().
  76. * CompareInfoTest.cs : added possible bug test for checkedFlags
  77. optimization.
  78. 2005-07-15 Atsushi Enomoto <[email protected]>
  79. * CompareInfoTest.cs : Some GetSortKey That tests got working.
  80. 2005-07-15 Atsushi Enomoto <[email protected]>
  81. * CompareInfoTest.cs : Uncommented tests that got working. Added two
  82. cornercase notworking LastIndexOf() tests.
  83. 2005-07-14 Atsushi Enomoto <[email protected]>
  84. * CompareInfoTest.cs : IsSuffix() extender tests got working.
  85. 2005-07-14 Atsushi Enomoto <[email protected]>
  86. * CompareInfoTest.cs : added tests for IndexOf() and LastIndexOf()
  87. with ignorable source character. Added some non-working tests.
  88. 2005-07-14 Atsushi Enomoto <[email protected]>
  89. * CompareInfoTest.cs : added tests for IndexOf() and LastIndexOf()
  90. that takes an expansion for target char.
  91. 2005-07-14 Atsushi Enomoto <[email protected]>
  92. * CompareInfoTest.cs : removed some FIXMEs. Added more extender tests.
  93. 2005-07-14 Atsushi Enomoto <[email protected]>
  94. * CompareInfoTest.cs : some special weight tests got working.
  95. Commented on some FIXME tests why they are so.
  96. 2005-07-14 Atsushi Enomoto <[email protected]>
  97. * CompareInfoTest.cs : Added extender tests for GetSortKey(),
  98. Compare(), IsPrefix(), IndexOf() and LastIndexOf().
  99. 2005-07-13 Atsushi Enomoto <[email protected]>
  100. * CompareInfoTest.cs : Added Compare() test that contains expansion.
  101. Fixed CompareSpecialWeight() which was not testing what I intended.
  102. Added IsPrefix() tests with special weight (copying Compare() tests)
  103. 2005-07-13 Atsushi Enomoto <[email protected]>
  104. * CompareInfoTest.cs : added CompareSpecialWeight() and moved special
  105. weight comparison there.
  106. 2005-07-13 Atsushi Enomoto <[email protected]>
  107. * CompareInfoTest.cs : added GetSortKey() testcase that tests a
  108. sequence of nonprimary character followed by an extender.
  109. 2005-07-13 Atsushi Enomoto <[email protected]>
  110. * CompareInfoTest.cs : added more culture-sensitive "empty" test.
  111. 2005-07-13 Atsushi Enomoto <[email protected]>
  112. * CompareInfoTest.cs : Test for IndexOf() and LastIndexOf() with
  113. "empty" target (in culture-sensitive context).
  114. 2005-07-13 Atsushi Enomoto <[email protected]>
  115. * CompareInfoTest.cs : added ignorable character in target for
  116. IsPrefix/IsSuffix/IndexOf/LastIndexOf methods.
  117. 2005-07-13 Atsushi Enomoto <[email protected]>
  118. * CompareInfoTest.cs : added more special weight testcases.
  119. 2005-07-13 Atsushi Enomoto <[email protected]>
  120. * CompareInfoTest.cs : added Czech and Hungarian sorting tests.
  121. 2005-07-13 Atsushi Enomoto <[email protected]>
  122. * CompareInfoTest.cs : added more diacritical tests.
  123. 2005-07-13 Atsushi Enomoto <[email protected]>
  124. * CompareInfoTest.cs : added test for CJK mapping customization.
  125. 2005-07-12 Atsushi Enomoto <[email protected]>
  126. * CompareInfoTest.cs : added GetSortKey() test for Thai.
  127. 2005-07-12 Atsushi Enomoto <[email protected]>
  128. * CompareInfoTest.cs : added special weight GetSortKey() test.
  129. 2005-07-12 Atsushi Enomoto <[email protected]>
  130. * CompareInfoTest.cs : added several GetSortKey() tests.
  131. 2005-07-12 Atsushi Enomoto <[email protected]>
  132. * CompareInfoTest.cs : added shift weight testcases. Commented one
  133. French sort thingy out.
  134. 2005-07-12 Atsushi Enomoto <[email protected]>
  135. * CompareInfoTest.cs : added another French testcase.
  136. 2005-07-12 Atsushi Enomoto <[email protected]>
  137. * CompareInfoTest.cs : added LastIndexOf() contraction cases and more.
  138. 2005-07-12 Atsushi Enomoto <[email protected]>
  139. * CompareInfoTest.cs : added tests for IsSuffix(),
  140. IndexOf(string,string) and LastIndexOf(string,string).
  141. 2005-07-12 Atsushi Enomoto <[email protected]>
  142. * CompareInfoTest.cs : added tests for IsPrefix() and optionally
  143. Compare() (which is currently used inside IsPrefix() which is
  144. however wrong when it comes to managed collation).
  145. 2005-07-12 Atsushi Enomoto <[email protected]>
  146. * CompareInfoTest.cs : added tests for IndexOf() and LastIndexOf().
  147. Fixed tests for Compare() - it should use overloaded ones of
  148. the tested library (do not call overloaded tests themselves).
  149. 2005-07-12 Atsushi Enomoto <[email protected]>
  150. * CompareInfoTest.cs : added a few managed collation tests for
  151. GetSortKey() and Compare() (they are ignored when managed collation
  152. is off).
  153. 2005-06-27 Gonzalo Paniagua Javier <[email protected]>
  154. * GlobalizationAndDomains.cs: more tests for bugz.
  155. 2005-06-07 Gonzalo Paniagua Javier <[email protected]>
  156. * CultureInfoTest.cs: added test that tries setting the culture to a
  157. neutral culture that is not the InvariantCulture.
  158. 2005-05-06 Gonzalo Paniagua Javier <[email protected]>
  159. * CultureInfoTest.cs: added new test.
  160. 2005-04-05 Atsushi Enomoto <[email protected]>
  161. * TextInfoTest.cs : added further ToTitleCase() tests.
  162. 2004-10-27 Ben Maurer <[email protected]>
  163. * TextInfoTest.cs: Fix up migster's type
  164. 2003-12-19 Dick Porter <[email protected]>
  165. * CompareInfoTest.cs: Added some Compare tests
  166. 2002-12-21 Nick Drochak <[email protected]>
  167. * all: make tests build and run under nunit2