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 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529
|
2010-01-15 Alexandre Gomes <alexmipego@gmail.com>
* ByteConverterTests.cs:
* DoubleConverterTests.cs:
* Int32ConverterTests.cs:
* Int16ConverterTests.cs:
* Int64ConverterTests.cs:
* SingleConverterTests.cs:
* UInt32ConverterTests.cs:
* SByteConverterTests.cs:
* UInt16ConverterTests.cs:
* UInt64ConverterTests.cs: Added tests to verify CanConvertTo when
targeting primitive types.
2009-09-29 Alan McGovern <amcgovern@novell.com>
* CategoryAttributeTest.cs: Added new test file.
2009-09-24 Ivan N. Zlatev <contact@i-nz.net>
* EnumConverterTests.cs: Add a test to verify behaviour when converting
a 0 flag value.
2009-07-21 Gert Driesen <drieseng@users.sourceforge.net>
* ContainerTest.cs: Added test for bug #522474.
2009-07-18 Gert Driesen <drieseng@users.sourceforge.net>
* ContainerTest.cs: Added tests for Remove and RemoveWithoutUnsiting.
2009-07-18 Gert Driesen <drieseng@users.sourceforge.net>
* ContainerTest.cs: Added tests for Add, Dispose, ValidateName and
GetService.
2009-06-26 Robert Jordan <robertj@gmx.net>
* EventHandlerListTests.cs, LicenseManagerTests.cs:
Upgrade to new NUnit style. Standalone tests (#if !NUNIT)
removed.
2009-06-22 Marek Habersack <mhabersack@novell.com>
* TypeDescriptorTests.cs: added tests for 2.0+ APIs which deal
with adding/removing/getting type description providers.
2009-05-14 Jonathan Pryor <jpryor@novell.com>
* ListChangedEventArgsTest.cs: Fix .NET 1.1 compile error.
2009-05-14 Jonathan Pryor <jpryor@novell.com>
* ListChangedEventArgsTest.cs: Added; tests for ListChangedEventArgs.
2009-02-19 Marek Habersack <mhabersack@novell.com>
* TypeDescriptorTests.cs: added a test for
TypeDescriptor.GetConverter (null) case.
2008-12-22 Ivan N. Zlatev <contact@i-nz.net>
* ReferenceConverterTest.cs: Added.
2008-12-06 Ivan N. Zlatev <contact@i-nz.net>
* TypeDescriptorTests.cs: Added a test for the NullableConverter support.
2008-12-06 Ivan N. Zlatev <contact@i-nz.net>
* NullableConverterTest.cs: Added.
2008-10-18 Gert Driesen <drieseng@users.sourceforge.net>
* TypeDescriptorTests.cs:
* PropertyDescriptorTests.cs: Define alias for S.C.DescriptionAttribute
to avoid ambiguous reference error using more recent versions of
NUnit (which also contains a DescriptionAttribute).
2008-09-01 Rodrigo Kumpera <rkumpera@novell.com>
* PropertyDescriptorTest.cs: Tests for Get/Set Value of partial
overrides of virtual properties.
2008-08-07 Sebastien Pouliot <sebastien@ximian.com>
* DefaultValueAttributeTest.cs: New. A few unit tests for
DefaultValueAttribute - showing problems in Equals and GetHashCode.
2008-07-16 Ivan N. Zlatev <contact@i-nz.net>
* TypeDescriptorTests.cs: Add a test that both GetConverter
overloads return the same converter.
2008-07-16 Jonathan Pobst <monkey@jpobst.com>
* BackgroundWorkerTest.cs: Add some asserts for bug #364365.
2008-07-16 Jonathan Pobst <monkey@jpobst.com>
* BackgroundWorkerTest.cs: Add tests for bugs 328830 and 373153.
2008-07-03 Gert Driesen <drieseng@users.sourceforge.net>
* PropertyDescriptorCollectionTests.cs: Allow tests for pass on MS.
* TypeDescriptorTests.cs: Added GetProperties and GetEvents asserts
for interfaces.
2008-06-27 Atsushi Enomoto <atsushi@ximian.com>
* PropertyDescriptorCollectionTests.cs : huh.
2008-06-27 Gert Driesen <drieseng@users.sourceforge.net>
* EventDescriptorCollectionTests.cs: Enabled tests for Empty, Find and
IList. Added test for String indexer.
* PropertyDescriptorCollectionTests.cs: Improved test for Find and
merged CultureInsensitiveFindTest. Improved test for Find with null
name/key. Added test for String indexer.
2008-06-27 Gert Driesen <drieseng@users.sourceforge.net>
* EventDescriptorCollectionTests.cs: Added tests based on tests for
PropertyDescriptorCollection.
* PropertyDescriptorCollectionTests.cs: Added tests for Sort overloads.
Improved test for Find with null key.
2008-06-11 Atsushi Enomoto <atsushi@ximian.com>
* DateTimeConverterTest.cs : test for bug #396649 by Andy Hume.
2008-05-30 Ivan N. Zlatev <contact@i-nz.net>
* TypeDescriptorTests.cs: Fix the attributes test on the 1.1 profile.
2008-05-29 Ivan N. Zlatev <contact@i-nz.net>
* TypeDescriptorTests.cs: Add test that verifies that GetAttributes
retrieves the attributes of the type, the base types and the
interfaces the type implements.
2008-05-05 Ivan N. Zlatev <contact@i-nz.net>
* TypeDescriptorTests.cs: Add test for handling write-only properties.
Based on patch by James Fitzsimons <james.fitzsimons@gmail.com>
2008-04-30 Gert Driesen <drieseng@users.sourceforge.net>
* ComponentConverterTests.cs: Allow test to be compiled using csc 1.x.
2008-04-16 Marek Habersack <mhabersack@novell.com>
* ComponentConverterTests.cs: added tests for
{Component, Reference}Converter ConvertFrom/ConvertTo changes.
2008-03-15 Gert Driesen <drieseng@users.sourceforge.net>
* DesignerAttributeTest.cs: Added ctor tests.
2008-02-26 Ivan N. Zlatev <contact@i-nz.net>
* PropertyDescriptorTests.cs: Add Converter tests. Based on a
patch by Andy Hume <andyhume32@yahoo.co.uk> under the MIT/X11
license.
2008-02-26 Gert Driesen <drieseng@users.sourceforge.net>
* CharConverterTest.cs: Fixed test to pass on MS.
* PropertyDescriptorTest.cs: Added test for Attributes.
2008-02-17 Gert Driesen <drieseng@users.sourceforge.net>
* CharConverterTest.cs: Added tests for ConvertFrom and ConvertTo.
* CultureInfoConverterTest.cs: Added tests for ConvertFrom and
ConvertTo.
2008-02-04 Ivan N. Zlatev <contact@i-nz.net>
* DateTimeConverterTests.cs: Test ConvertFrom with empty string.
2008-01-19 Rolf Bjarne Kvinge <RKvinge@novell.com>
* MaskedTextProviderTest.cs: Fix IsPassword (found by Gendarme)
2008-01-03 Gert Driesen <drieseng@users.sourceforge.net>
* TypeDescriptorProperties.cs: added test for order of
PropertyDescriptor instances returned by GetProperties.
2007-12-25 Vladimir Krasnov <vladimirk@mainsoft.com>
* PropertyDescriptorCollectionTests.cs: added test for Find method
2007-12-04 Gert Driesen <drieseng@users.sourceforge.net>
* Win32ExceptionTest.cs: Added ctor tests.
2007-11-15 Gert Driesen <drieseng@users.sourceforge.net>
* PropertyDescriptorTests.cs: Added tests for AddValueChanged,
GetInvocationTarget, GetValueChangedHandler and RemoveValueChanged.
2007-11-03 Gert Driesen <drieseng@users.sourceforge.net>
* InvalidEnumArgumentExceptionTest.cs: Added ctor tests.
2007-10-29 Atsushi Enomoto <atsushi@ximian.com>
* ContainerTest.cs : added test for ValidateName().
2007-09-28 Jb Evain <jbevain@novell.com>
* TypeConverterTests.cs: test case for bug #329450.
2007-09-25 Jonathan Pobst <monkey@jpobst.com>
* AsyncOperationManagerTest.cs: Add test for SynchronizationContext.
2007-09-17 Gert Driesen <drieseng@users.sourceforge.net>
* ComponentResourceManagerTest.cs: Added tests for ctors,
ApplyResources and IgnoreCase.
2007-09-05 Gert Driesen <drieseng@users.sourceforge.net>
* EnumConverterTest.cs: Enabled test for converting flag enum from
string. Made tests less strict.
2007-08-31 Gert Driesen <drieseng@users.sourceforge.net>
* TypeConverterTest.cs: Added tests for GetConvertFromException and
GetConvertToException.
* EnumConverterTest.cs: Enabled test for converting flag enums to
InstanceDescriptor.
2007-08-25 Ivan N. Zlatev <contact@i-nz.net>
* NestedContainerTest.cs: add.
2007-08-20 Gert Driesen <drieseng@users.sourceforge.net>
* EnumConverterTests.cs: Added tests for EnumConverter.
2007-08-19 Ivan N. Zlatev <contact@i-nz.net>
* ReflectionPropertyDescriptorTests.cs: For read-only properties,
ShouldSerializeValue must also check for
DesignerSerializationVisibility.Content and if present return true.
2007-08-19 Gert Driesen <drieseng@users.sourceforge.net>
* TypeDescriptorTests: Removed Ivan's local Category.
2007-08-19 Ivan N. Zlatev <contact@i-nz.net>
* TypeDescriptorTests.cs: new test to verify that GetProperties returns
only the last type's implementation of a property with a matching name
in the base types.
2007-08-01 Atsushi Enomoto <atsushi@ximian.com>
* BackgroundWorkerTest.cs : new test to clear some doubts on impl.
2007-07-21 Gert Driesen <drieseng@users.sourceforge.net>
* DisplayNameAttribute.cs: Added ctor tests. Fixed tests to pass on
MS (now that our implementation matches that of MS). Added tests
for Default, GetHashCode and Equals.
2007-07-16 Gert Driesen <drieseng@users.sourceforge.net>
* PropertyDescriptorTests.cs: Added test for ShouldSerializeValue
behavior with read-only properties.
2007-07-13 Gert Driesen <drieseng@users.sourceforge.net>
* PropertyDescriptorTests.cs: Added tests for Igor's fixes for
ShouldSerializeValue.
2007-07-12 Rolf Bjarne Kvinge <RKvinge@novell.com>
* PropertyDescriptorTests.cs: Added GetEditorTest.
2006-05-31 Atsushi Enomoto <atsushi@ximian.com>
* LookupBindingPropertiesAttributeTest.cs:
test GetHashCode() as well.
2007-05-31 Rolf Bjarne Kvinge <RKvinge@novell.com>
* LookupBindingPropertiesAttributeTest.cs: Added.
2007-05-10 Rolf Bjarne Kvinge <RKvinge@novell.com>
* MaskedTextProviderTest.cs: New test.
2007-02-27 Rolf Bjarne Kvinge <RKvinge@novell.com>
* MaskedTextProviderTest.cs: Added.
* MaskedTextProviderTestGenerator.cs: Added.
2007-02-16 Gert Driesen <drieseng@users.sourceforge.net>
* TypeDescriptorTests.cs: Use Assert instead of deriving from
deprecated Assertion. Added test for component that has a site without
an ITypeDescriptorFilterService. Fixes bug #80836.
2007-02-01 Ilya Kharmatsky <ilyak -at- mainsoft.com>
* TypeConverterTests.cs, PropertyDescriptorCollectionTests.cs:
excluded test which not working under TARGET_JVM
2007-01-29 Ilya Kharmatsky <ilyak -at- mainsoft.com>
* ToolboxItemAttributeTests.cs: excluded DefaultType test,
under TARGET_JVM
2007-01-25 Ilya Kharmatsky <ilyak -at- mainsoft.com>
* ArrayConverterTests.cs: workaround not supported under TARGET_JVM
property 'ParamName' of System.ArgumentNullException
2007-01-20 Chris Toshok <toshok@ximian.com>
* BindingListTest.cs: new tests for BindingList<T>
2007-01-05 Sebastien Pouliot <sebastien@ximian.com>
* TypeDescriptorTests.cs: Fix TestGetAttributes t16 as there can be
many [Designer] attributes and their order isn't deterministic (like
the test required).
2006-12-28 Gert Driesen <drieseng@users.sourceforge.net>
* ContainerTest.cs: Fixed compiler warning.
2006-12-22 Rolf Bjarne Kvinge <RKvinge@novell.com>
* DefaultBindingPropertyAttributeTest.cs: new tests.
2006-12-21 Gert Driesen <drieseng@users.sourceforge.net>
* PropertyDescriptorTests.cs: Added test for bug #80292. Fixed
accessibility of NestedClass, not caugh due to bug #80338.
2006-12-20 Chris Toshok <toshok@ximian.com>
* AttributeProviderAttributeTest.cs: new tests.
2006-12-20 Chris Toshok <toshok@ximian.com>
* ComplexBindingPropertiesAttributeTest.cs: add test for Default
field.
2006-12-20 Chris Toshok <toshok@ximian.com>
* ComplexBindingPropertiesAttributeTest.cs: new tests.
2006-12-19 Chris Toshok <toshok@ximian.com>
* PropertyDescriptorTests.cs: add some tests here because we were
generating an NRE for a missing type converter type. MS doesn't -
it instead falls back to the converter for the property type.
2006-12-06 Chris Toshok <toshok@ximian.com>
* PropertyDescriptorTests.cs: add a test to see if
ShouldSerializeValue's return value affects CanResetValue.
2006-12-06 Chris Toshok <toshok@ximian.com>
* PropertyDescriptorTests.cs: add a test for ShouldSerializeValue
and CanResetValue on a class without ShouldSerialize/Reset
methods.
2006-12-06 Chris Toshok <toshok@ximian.com>
* PropertyDescriptorTests.cs: flesh out these tests more with some
for ShouldSerialize and CanReset.
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.
|