ChangeLog 8.9 KB

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