ChangeLog 5.7 KB

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