ChangeLog 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  1. 2007-08-01 Atsushi Enomoto <[email protected]>
  2. * BackgroundWorkerTest.cs : new test to clear some doubts on impl.
  3. 2007-07-21 Gert Driesen <[email protected]>
  4. * DisplayNameAttribute.cs: Added ctor tests. Fixed tests to pass on
  5. MS (now that our implementation matches that of MS). Added tests
  6. for Default, GetHashCode and Equals.
  7. 2007-07-16 Gert Driesen <[email protected]>
  8. * PropertyDescriptorTests.cs: Added test for ShouldSerializeValue
  9. behavior with read-only properties.
  10. 2007-07-13 Gert Driesen <[email protected]>
  11. * PropertyDescriptorTests.cs: Added tests for Igor's fixes for
  12. ShouldSerializeValue.
  13. 2007-07-12 Rolf Bjarne Kvinge <[email protected]>
  14. * PropertyDescriptorTests.cs: Added GetEditorTest.
  15. 2006-05-31 Atsushi Enomoto <[email protected]>
  16. * LookupBindingPropertiesAttributeTest.cs:
  17. test GetHashCode() as well.
  18. 2007-05-31 Rolf Bjarne Kvinge <[email protected]>
  19. * LookupBindingPropertiesAttributeTest.cs: Added.
  20. 2007-05-10 Rolf Bjarne Kvinge <[email protected]>
  21. * MaskedTextProviderTest.cs: New test.
  22. 2007-02-27 Rolf Bjarne Kvinge <[email protected]>
  23. * MaskedTextProviderTest.cs: Added.
  24. * MaskedTextProviderTestGenerator.cs: Added.
  25. 2007-02-16 Gert Driesen <[email protected]>
  26. * TypeDescriptorTests.cs: Use Assert instead of deriving from
  27. deprecated Assertion. Added test for component that has a site without
  28. an ITypeDescriptorFilterService. Fixes bug #80836.
  29. 2007-02-01 Ilya Kharmatsky <ilyak -at- mainsoft.com>
  30. * TypeConverterTests.cs, PropertyDescriptorCollectionTests.cs:
  31. excluded test which not working under TARGET_JVM
  32. 2007-01-29 Ilya Kharmatsky <ilyak -at- mainsoft.com>
  33. * ToolboxItemAttributeTests.cs: excluded DefaultType test,
  34. under TARGET_JVM
  35. 2007-01-25 Ilya Kharmatsky <ilyak -at- mainsoft.com>
  36. * ArrayConverterTests.cs: workaround not supported under TARGET_JVM
  37. property 'ParamName' of System.ArgumentNullException
  38. 2007-01-20 Chris Toshok <[email protected]>
  39. * BindingListTest.cs: new tests for BindingList<T>
  40. 2007-01-05 Sebastien Pouliot <[email protected]>
  41. * TypeDescriptorTests.cs: Fix TestGetAttributes t16 as there can be
  42. many [Designer] attributes and their order isn't deterministic (like
  43. the test required).
  44. 2006-12-28 Gert Driesen <[email protected]>
  45. * ContainerTest.cs: Fixed compiler warning.
  46. 2006-12-22 Rolf Bjarne Kvinge <[email protected]>
  47. * DefaultBindingPropertyAttributeTest.cs: new tests.
  48. 2006-12-21 Gert Driesen <[email protected]>
  49. * PropertyDescriptorTests.cs: Added test for bug #80292. Fixed
  50. accessibility of NestedClass, not caugh due to bug #80338.
  51. 2006-12-20 Chris Toshok <[email protected]>
  52. * AttributeProviderAttributeTest.cs: new tests.
  53. 2006-12-20 Chris Toshok <[email protected]>
  54. * ComplexBindingPropertiesAttributeTest.cs: add test for Default
  55. field.
  56. 2006-12-20 Chris Toshok <[email protected]>
  57. * ComplexBindingPropertiesAttributeTest.cs: new tests.
  58. 2006-12-19 Chris Toshok <[email protected]>
  59. * PropertyDescriptorTests.cs: add some tests here because we were
  60. generating an NRE for a missing type converter type. MS doesn't -
  61. it instead falls back to the converter for the property type.
  62. 2006-12-06 Chris Toshok <[email protected]>
  63. * PropertyDescriptorTests.cs: add a test to see if
  64. ShouldSerializeValue's return value affects CanResetValue.
  65. 2006-12-06 Chris Toshok <[email protected]>
  66. * PropertyDescriptorTests.cs: add a test for ShouldSerializeValue
  67. and CanResetValue on a class without ShouldSerialize/Reset
  68. methods.
  69. 2006-12-06 Chris Toshok <[email protected]>
  70. * PropertyDescriptorTests.cs: flesh out these tests more with some
  71. for ShouldSerialize and CanReset.
  72. 2006-11-08 Sebastien Pouliot <[email protected]>
  73. * CollectionConverterTest.cs: More test cases.
  74. 2006-11-08 Gert Driesen <[email protected]>
  75. * ArrayConverterTests.cs: Added tests for ArrayConverter.
  76. 2006-11-07 Sebastien Pouliot <[email protected]>
  77. * CollectionConverterTest.cs: New. Some unit tests done while tracking
  78. an issue.
  79. 2006-09-11 Gonzalo Paniagua Javier <[email protected]>
  80. * System.ComponentModel/ContainerTest.cs: new test.
  81. 2006-09-11 Gonzalo Paniagua Javier <[email protected]>
  82. * TypeDescriptorTests.cs: test for overriden attributes.
  83. Patch by Ivan N. Zlatev.
  84. 2006-05-22 Atsushi Enomoto <[email protected]>
  85. * TypeDescriptorTest.cs : added GetPropertiesIgnoreIndexers().
  86. 2006-04-25 Atsushi Enomoto <[email protected]>
  87. * ByteConverterTests.cs,
  88. DecimalConverterTests.cs,
  89. DoubleConverterTests.cs,
  90. Int16ConverterTests.cs,
  91. Int64ConverterTests.cs,
  92. SByteConverterTests.cs,
  93. SingleConverterTests.cs,
  94. UInt16ConverterTests.cs,
  95. UInt32ConverterTests.cs,
  96. UInt64ConverterTests.cs:
  97. ConvertToString() (test with custom culture) failed on .NET 2.0.
  98. Fixed it by adding NumberFormat override in each test culture.
  99. 2006-03-11 Gert Driesen <[email protected]>
  100. * TypeDescriptorTests.cs: Added test for bug #76686.
  101. 2006-02-23 Andrew Skiba <[email protected]>
  102. * standalone_tests: TypeDescriptor performance test
  103. 2006-01-31 Gonzalo Paniagua Javier <[email protected]>
  104. * ContainerTest.cs: new test.
  105. 2005-09-29 Raja R Harinath <[email protected]>
  106. * DateTimeConverterTests.cs (ConvertTo_MaxValue): Disable tests
  107. that require CurrentCulture _not_ to be InvariantCulture.
  108. (ConvertToString_MaxValue): Likewise.
  109. 2005-09-19 Gert Driesen <[email protected]>
  110. * TypeConverterTests.cs: Added tests for TypeConverter.
  111. * PropertyDescriptorCollection.cs: Added tests for PropertyDescriptor
  112. Collection.
  113. 2005-08-28 Gert Driesen <[email protected]>
  114. * DateTimeConverterTests.cs: Added tests for DateTimeConverter.
  115. 2005-08-26 Gert Driesen <[email protected]>
  116. * ByteConverterTests.cs: Added ConvertToString and ConvertFromString
  117. tests with culture that has overriden GetFormat for NumberFormatInfo.
  118. * DecimalConverterTests.cs: same.
  119. * DoubleConverterTests.cs: same.
  120. * Int16ConverterTests.cs: same.
  121. * Int32ConverterTests.cs: same.
  122. * Int64ConverterTests.cs: same.
  123. * SByteConverterTests.cs: same.
  124. * SingleConverterTests.cs: same.
  125. * UInt16ConverterTests.cs: same.
  126. * UInt32ConverterTests.cs: same.
  127. * UInt64ConverterTests.cs: same.
  128. 2005-08-19 Gert Driesen <[email protected]>
  129. * ToolboxItemAttributeTests.cs: Fixed typo in eol-style property.
  130. * ByteConverterTests.cs: Added tests for hex string and min/max
  131. conversions.
  132. * Int16ConverterTests.cs: Added tests for hex string and min/max
  133. conversions.
  134. * Int32ConverterTests.cs: Added tests for hex string and min/max
  135. conversions.
  136. * DecimalConverterTests.cs: Added tests for DecimalConverter.
  137. * DoubleConverterTests.cs: Added tests for DoubleConverter.
  138. * Int64ConverterTests.cs: Added tests for Int64Converter.
  139. * SByteConverterTests.cs: Added tests for SByteConverter.
  140. * SingleConverterTests.cs: Added tests for SingleConverter.
  141. * UInt16ConverterTests.cs: Added tests for UInt16Converter.
  142. * UInt32ConverterTests.cs: Added tests for UInt32Converter.
  143. * UInt64ConverterTests.cs: Added tests for UInt64Converter.
  144. 2005-08-16 Gert Driesen <[email protected]>
  145. * ByteConverterTests.cs: Added tests for ByteConverter.
  146. * Int16ConverterTests.cs: Added tests for Int16Converter.
  147. * Int32ConverterTests.cs: Added tests for Int32Converter.
  148. 2005-08-16 Gert Driesen <[email protected]>
  149. * ToolboxItemAttributeTests.cs: Added tests for ToolboxItemAttribute.
  150. 2005-06-04 Gert Driesen <[email protected]>
  151. * TypeDescriptorTests.cs: Added tests for bug #75152. Fixed tests
  152. to pass on Mono and MS.NET.
  153. 2005-02-05 Gonzalo Paniagua Javier <[email protected]>
  154. * TypeDescriptorTests.cs: new test for TypeConverter ctor that takes
  155. a Type argument.
  156. 2005-01-24 Joerg Rosenkranz ([email protected])
  157. * TypeDescriptorTests.cs: Added tests for bug #71444
  158. 2005-01-19 Nick Drochak <[email protected]>
  159. * TypeDescriptorTests.cs: Add another test in GetComponentName() to check
  160. the component name returned for a component without a Site.
  161. 2005-01-08 Nick Drochak <[email protected]>
  162. * TypeDescriptorTests.cs: Fix/Ignore tests for MS.NET
  163. 2004-04-16 Lluis Sanchez Gual <[email protected]>
  164. * TypeDescriptorTests.cs: Added new tests for TypeDescriptor.
  165. 2004-03-17 Ivan Hamilton <[email protected]>
  166. * LicenseManagerTests.cs: New. Unit tests.
  167. 2002-10-30 Gonzalo Paniagua Javier <[email protected]>
  168. * AllTests.cs:
  169. * ChangeLog:
  170. * EventHandlerListTests.cs: new test.