ChangeLog 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. 2007-01-15 Sebastien Pouliot <[email protected]>
  2. * IconCodecTest.cs: New test case to check 32bpp (XP) icons.
  3. 2007-01-11 Sebastien Pouliot <[email protected]>
  4. * IconCodecTest.cs: New test case to check loading from an Icon then
  5. create a Bitmap from the Image. Some properties are changed in the
  6. process (e.g. palette, flags).
  7. 2007-01-10 Sebastien Pouliot <[email protected]>
  8. * IconCodecTest.cs: Add test cases for 48x48, 64x64 and 96x96 icons.
  9. Fix test cases for 16x16 and 32x32 icons. Add test cases for 256
  10. colors and monochrome icons. Remove NotWorking from most tests.
  11. 2007-01-08 Sebastien Pouliot <[email protected]>
  12. * IconCodecTest.cs: Remove [Ignore] and replace with NotWorking.
  13. * TestImageCodecInfo.cs: Add test for new encoders/decoders and
  14. signature masks and patterns.
  15. 2006-12-21 Sebastien Pouliot <[email protected]>
  16. * TestImageAttributes.cs: Added test cases for #80323 for ColorMatrix
  17. using alpha values (with or without an original alpha-based color).
  18. 2006-10-31 Sebastien Pouliot <[email protected]>
  19. * MetaHeaderTest.cs: New. Unit tests for MetaHeader.
  20. * WmfPlaceableFileHeaderTest.cs: New. Unit tests for
  21. WmfPlaceableFileHeader.
  22. 2006-09-18 Boris Kirzner <[email protected]>
  23. * TestBmpCodec.cs,TestColorMatrix.cs,TestJpegCodec.cs : mark tests
  24. not working in TARGET_JVM.
  25. 2006-09-16 Sebastien Pouliot <[email protected]>
  26. * GifCodecTest.cs: Change filename for Save to ease debugging.
  27. * IconCodecTest.cs: Change filename for Save to ease debugging.
  28. * PngCodecTest.cs: Change filename for Save to ease debugging. Change
  29. color from Red to BlueViolet for lossless formats.
  30. * TestBmpCodec.cs: Change filename for Save to ease debugging. Change
  31. color from Red to BlueViolet for lossless formats.
  32. * TestJpegCodec.cs: Change filename for Save to ease debugging.
  33. * TiffCodecTest.cs: Change filename for Save to ease debugging. Change
  34. color from Red to BlueViolet for lossless formats.
  35. 2006-09-15 Sebastien Pouliot <[email protected]>
  36. * GifCodecTest.cs, IconCodecTest.cs, PngCodecTest.cs, TestBmpCodec.cs,
  37. TestJpegCodec.cs, TiffCodecTest.cs: Refactor Save test case to check
  38. convertions between pixel formats.
  39. 2006-09-12 Boris Kirzner <[email protected]>
  40. * TestBmpCodec.cs, TestJpegCodec.cs: ifdef unsafe code
  41. for TARGET_JVM.
  42. 2006-09-01 Sebastien Pouliot <[email protected]>
  43. * GifCodecTest.cs: New. Unit tests for GIF codec.
  44. * IconCodecTest.cs: New. Unit tests for ICON codec (not working).
  45. * PngCodecTest.cs: New. Unit tests for PNG codec.
  46. * TiffCodecTest.cs: New. Unit tests for TIFF codec.
  47. 2006-08-31 Sebastien Pouliot <[email protected]>
  48. * TestBmpCodec.cs: Add more test cases for 1, 8 and 32 bbp bitmaps
  49. including checks for Pixels and BitmapData.
  50. * TestImageCodecInfo.cs: Fix namespace and class name.
  51. * TestJpegCodec.cs: Reactivate the tests (not sure why they were
  52. commented). Added test cases for Pixel and BitmapData (NotWorking).
  53. 2006-08-25 Sebastien Pouliot <[email protected]>
  54. * TestBmpCodec.cs: Add pixel value tests to a well known bitmap.
  55. 2006-08-24 Sebastien Pouliot <[email protected]>
  56. * TestColorMatrix.cs: Add test cases for error handling inside ctor and
  57. for testing each field with a different value.
  58. 2006-07-19 Sebastien Pouliot <[email protected]>
  59. * TestImageFormat.cs: Added test cases for well known image format
  60. (which returns a human readable name when the ImageFormat comes from
  61. the static properties).
  62. 2006-06-30 Sebastien Pouliot <[email protected]>
  63. * TestImageAttribute.cs: Fix namespace and split test for easier
  64. search of a memory leak.
  65. 2006-05-29 Sebastien Pouliot <[email protected]>
  66. * TestImageFormat.cs: Added test cases for Equals and GetHashCode.
  67. 2006-05-24 Sebastien Pouliot <[email protected]>
  68. * TestImageFormat.cs: Update ToString expected outputs to match MS.
  69. 2006-05-17 Gonzalo Paniagua Javier <[email protected]>
  70. * TestBmpCodec.cs: Bitmap24bitFeatures works now.
  71. 2006-04-25 Peter Dennis Bartok <[email protected]>
  72. * TestBmpCodec.cs: Marked the 24bit test as not working until
  73. bug #78189 is fixed.
  74. 2006-01-25 Boris Kirzner <[email protected]>
  75. *TestBmpCodec.cs, TestImageAttributes.cs, TestImageCodecInfo.cs:
  76. added #ifdef for TARGET_JVM.
  77. 2005-11-13 Kornél Pál <[email protected]>
  78. * TestImageFormat.cs: Added ToStringTest.
  79. 2005-10-31 Jordi Mas i Hernandez <[email protected]>
  80. * TestImageFormat.cs: New test unit
  81. 2005-09-16 Sebastien Pouliot <[email protected]>
  82. * TestBmpCodec.cs, TestColorMatrix.cs, TestImageAttributes.cs,
  83. TestImageCodecInfo.cs, TestJpegCodec.cs: Deny UnmanagedCode permission
  84. to all tests. This shows (when executed under MS runtime) that S.D API
  85. is safe and doesn't requires high privileges to run - even if we know
  86. that, deep down, this calls into GDI+.
  87. 2005-08-19 Jordi Mas i Hernandez <[email protected]>
  88. * TestBmpCodec.cs: Enable PixelFormat tests
  89. 2005-08-16 Andrew Skiba <[email protected]>
  90. * TestImageCodecInfo.cs: use regular expressions for results that may vary
  91. while still in correct format, so same tests can be used for jvm
  92. 2005-08-09 Andrew Skiba <[email protected]>
  93. * TestImageCodecInfo.cs: FormatID, CodecName, DllName, FilenameExtension,
  94. Flags, FormatDescription, MimeType properties checked
  95. 2005-08-09 Andrew Skiba <[email protected]>
  96. * TestImageCodecInfo.cs: refactor to make possible to add tests for all
  97. properties, not only FormatID.
  98. 2004-03-22 Jordi Mas i Hernandez <[email protected]>
  99. * TestColorMatrix.cs: added test case
  100. * TestImageAttributes.cs: added test case
  101. 2004-06-10 Sanjay Gupta <[email protected]>
  102. * TestBmpCodec.cs, TestImageCodecInfo.cs, TestJpedCodec.cs: Removed
  103. dependency on obsolete class, Assertion from NUnit.
  104. 2004-03-17 Ravindra <[email protected]>
  105. * Created this repository for System.Drawing.Imaging tests.
  106. * ChangeLog: Added.