1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
|
2006-11-08 Sebastien Pouliot <sebastien@ximian.com>
* CollectionConverterTest.cs: More test cases.
2006-11-08 Gert Driesen <drieseng@users.sourceforge.net>
* ArrayConverterTests.cs: Added tests for ArrayConverter.
2006-11-07 Sebastien Pouliot <sebastien@ximian.com>
* CollectionConverterTest.cs: New. Some unit tests done while tracking
an issue.
2006-09-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* System.ComponentModel/ContainerTest.cs: new test.
2006-09-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* TypeDescriptorTests.cs: test for overriden attributes.
Patch by Ivan N. Zlatev.
2006-05-22 Atsushi Enomoto <atsushi@ximian.com>
* TypeDescriptorTest.cs : added GetPropertiesIgnoreIndexers().
2006-04-25 Atsushi Enomoto <atsushi@ximian.com>
* ByteConverterTests.cs,
DecimalConverterTests.cs,
DoubleConverterTests.cs,
Int16ConverterTests.cs,
Int64ConverterTests.cs,
SByteConverterTests.cs,
SingleConverterTests.cs,
UInt16ConverterTests.cs,
UInt32ConverterTests.cs,
UInt64ConverterTests.cs:
ConvertToString() (test with custom culture) failed on .NET 2.0.
Fixed it by adding NumberFormat override in each test culture.
2006-03-11 Gert Driesen <drieseng@users.sourceforge.net>
* TypeDescriptorTests.cs: Added test for bug #76686.
2006-02-23 Andrew Skiba <andrews@mainsoft.com>
* standalone_tests: TypeDescriptor performance test
2006-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* ContainerTest.cs: new test.
2005-09-29 Raja R Harinath <harinath@gmail.com>
* DateTimeConverterTests.cs (ConvertTo_MaxValue): Disable tests
that require CurrentCulture _not_ to be InvariantCulture.
(ConvertToString_MaxValue): Likewise.
2005-09-19 Gert Driesen <drieseng@users.sourceforge.net>
* TypeConverterTests.cs: Added tests for TypeConverter.
* PropertyDescriptorCollection.cs: Added tests for PropertyDescriptor
Collection.
2005-08-28 Gert Driesen <drieseng@users.sourceforge.net>
* DateTimeConverterTests.cs: Added tests for DateTimeConverter.
2005-08-26 Gert Driesen <drieseng@users.sourceforge.net>
* ByteConverterTests.cs: Added ConvertToString and ConvertFromString
tests with culture that has overriden GetFormat for NumberFormatInfo.
* DecimalConverterTests.cs: same.
* DoubleConverterTests.cs: same.
* Int16ConverterTests.cs: same.
* Int32ConverterTests.cs: same.
* Int64ConverterTests.cs: same.
* SByteConverterTests.cs: same.
* SingleConverterTests.cs: same.
* UInt16ConverterTests.cs: same.
* UInt32ConverterTests.cs: same.
* UInt64ConverterTests.cs: same.
2005-08-19 Gert Driesen <drieseng@users.sourceforge.net>
* ToolboxItemAttributeTests.cs: Fixed typo in eol-style property.
* ByteConverterTests.cs: Added tests for hex string and min/max
conversions.
* Int16ConverterTests.cs: Added tests for hex string and min/max
conversions.
* Int32ConverterTests.cs: Added tests for hex string and min/max
conversions.
* DecimalConverterTests.cs: Added tests for DecimalConverter.
* DoubleConverterTests.cs: Added tests for DoubleConverter.
* Int64ConverterTests.cs: Added tests for Int64Converter.
* SByteConverterTests.cs: Added tests for SByteConverter.
* SingleConverterTests.cs: Added tests for SingleConverter.
* UInt16ConverterTests.cs: Added tests for UInt16Converter.
* UInt32ConverterTests.cs: Added tests for UInt32Converter.
* UInt64ConverterTests.cs: Added tests for UInt64Converter.
2005-08-16 Gert Driesen <drieseng@users.sourceforge.net>
* ByteConverterTests.cs: Added tests for ByteConverter.
* Int16ConverterTests.cs: Added tests for Int16Converter.
* Int32ConverterTests.cs: Added tests for Int32Converter.
2005-08-16 Gert Driesen <drieseng@users.sourceforge.net>
* ToolboxItemAttributeTests.cs: Added tests for ToolboxItemAttribute.
2005-06-04 Gert Driesen <drieseng@users.sourceforge.net>
* TypeDescriptorTests.cs: Added tests for bug #75152. Fixed tests
to pass on Mono and MS.NET.
2005-02-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* TypeDescriptorTests.cs: new test for TypeConverter ctor that takes
a Type argument.
2005-01-24 Joerg Rosenkranz (joergr@voelcker.com)
* TypeDescriptorTests.cs: Added tests for bug #71444
2005-01-19 Nick Drochak <ndrochak@ieee.org>
* TypeDescriptorTests.cs: Add another test in GetComponentName() to check
the component name returned for a component without a Site.
2005-01-08 Nick Drochak <ndrochak@ieee.org>
* TypeDescriptorTests.cs: Fix/Ignore tests for MS.NET
2004-04-16 Lluis Sanchez Gual <lluis@ximian.com>
* TypeDescriptorTests.cs: Added new tests for TypeDescriptor.
2004-03-17 Ivan Hamilton <ivan@chimerical.com.au>
* LicenseManagerTests.cs: New. Unit tests.
2002-10-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* AllTests.cs:
* ChangeLog:
* EventHandlerListTests.cs: new test.
|