2
0

ChangeLog 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. 2006-09-01 Sebastien Pouliot <[email protected]>
  2. * GifCodecTest.cs: New. Unit tests for GIF codec.
  3. * IconCodecTest.cs: New. Unit tests for ICON codec (not working).
  4. * PngCodecTest.cs: New. Unit tests for PNG codec.
  5. * TiffCodecTest.cs: New. Unit tests for TIFF codec.
  6. 2006-08-31 Sebastien Pouliot <[email protected]>
  7. * TestBmpCodec.cs: Add more test cases for 1, 8 and 32 bbp bitmaps
  8. including checks for Pixels and BitmapData.
  9. * TestImageCodecInfo.cs: Fix namespace and class name.
  10. * TestJpegCodec.cs: Reactivate the tests (not sure why they were
  11. commented). Added test cases for Pixel and BitmapData (NotWorking).
  12. 2006-08-25 Sebastien Pouliot <[email protected]>
  13. * TestBmpCodec.cs: Add pixel value tests to a well known bitmap.
  14. 2006-08-24 Sebastien Pouliot <[email protected]>
  15. * TestColorMatrix.cs: Add test cases for error handling inside ctor and
  16. for testing each field with a different value.
  17. 2006-07-19 Sebastien Pouliot <[email protected]>
  18. * TestImageFormat.cs: Added test cases for well known image format
  19. (which returns a human readable name when the ImageFormat comes from
  20. the static properties).
  21. 2006-06-30 Sebastien Pouliot <[email protected]>
  22. * TestImageAttribute.cs: Fix namespace and split test for easier
  23. search of a memory leak.
  24. 2006-05-29 Sebastien Pouliot <[email protected]>
  25. * TestImageFormat.cs: Added test cases for Equals and GetHashCode.
  26. 2006-05-24 Sebastien Pouliot <[email protected]>
  27. * TestImageFormat.cs: Update ToString expected outputs to match MS.
  28. 2006-05-17 Gonzalo Paniagua Javier <[email protected]>
  29. * TestBmpCodec.cs: Bitmap24bitFeatures works now.
  30. 2006-04-25 Peter Dennis Bartok <[email protected]>
  31. * TestBmpCodec.cs: Marked the 24bit test as not working until
  32. bug #78189 is fixed.
  33. 2006-01-25 Boris Kirzner <[email protected]>
  34. *TestBmpCodec.cs, TestImageAttributes.cs, TestImageCodecInfo.cs:
  35. added #ifdef for TARGET_JVM.
  36. 2005-11-13 Kornél Pál <[email protected]>
  37. * TestImageFormat.cs: Added ToStringTest.
  38. 2005-10-31 Jordi Mas i Hernandez <[email protected]>
  39. * TestImageFormat.cs: New test unit
  40. 2005-09-16 Sebastien Pouliot <[email protected]>
  41. * TestBmpCodec.cs, TestColorMatrix.cs, TestImageAttributes.cs,
  42. TestImageCodecInfo.cs, TestJpegCodec.cs: Deny UnmanagedCode permission
  43. to all tests. This shows (when executed under MS runtime) that S.D API
  44. is safe and doesn't requires high privileges to run - even if we know
  45. that, deep down, this calls into GDI+.
  46. 2005-08-19 Jordi Mas i Hernandez <[email protected]>
  47. * TestBmpCodec.cs: Enable PixelFormat tests
  48. 2005-08-16 Andrew Skiba <[email protected]>
  49. * TestImageCodecInfo.cs: use regular expressions for results that may vary
  50. while still in correct format, so same tests can be used for jvm
  51. 2005-08-09 Andrew Skiba <[email protected]>
  52. * TestImageCodecInfo.cs: FormatID, CodecName, DllName, FilenameExtension,
  53. Flags, FormatDescription, MimeType properties checked
  54. 2005-08-09 Andrew Skiba <[email protected]>
  55. * TestImageCodecInfo.cs: refactor to make possible to add tests for all
  56. properties, not only FormatID.
  57. 2004-03-22 Jordi Mas i Hernandez <[email protected]>
  58. * TestColorMatrix.cs: added test case
  59. * TestImageAttributes.cs: added test case
  60. 2004-06-10 Sanjay Gupta <[email protected]>
  61. * TestBmpCodec.cs, TestImageCodecInfo.cs, TestJpedCodec.cs: Removed
  62. dependency on obsolete class, Assertion from NUnit.
  63. 2004-03-17 Ravindra <[email protected]>
  64. * Created this repository for System.Drawing.Imaging tests.
  65. * ChangeLog: Added.