ChangeLog 11 KB

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