ChangeLog 6.9 KB

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