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
|
2006-10-31 Sebastien Pouliot <sebastien@ximian.com>
* MetaHeaderTest.cs: New. Unit tests for MetaHeader.
* WmfPlaceableFileHeaderTest.cs: New. Unit tests for
WmfPlaceableFileHeader.
2006-09-18 Boris Kirzner <borisk@mainsoft.com>
* TestBmpCodec.cs,TestColorMatrix.cs,TestJpegCodec.cs : mark tests
not working in TARGET_JVM.
2006-09-16 Sebastien Pouliot <sebastien@ximian.com>
* GifCodecTest.cs: Change filename for Save to ease debugging.
* IconCodecTest.cs: Change filename for Save to ease debugging.
* PngCodecTest.cs: Change filename for Save to ease debugging. Change
color from Red to BlueViolet for lossless formats.
* TestBmpCodec.cs: Change filename for Save to ease debugging. Change
color from Red to BlueViolet for lossless formats.
* TestJpegCodec.cs: Change filename for Save to ease debugging.
* TiffCodecTest.cs: Change filename for Save to ease debugging. Change
color from Red to BlueViolet for lossless formats.
2006-09-15 Sebastien Pouliot <sebastien@ximian.com>
* GifCodecTest.cs, IconCodecTest.cs, PngCodecTest.cs, TestBmpCodec.cs,
TestJpegCodec.cs, TiffCodecTest.cs: Refactor Save test case to check
convertions between pixel formats.
2006-09-12 Boris Kirzner <borisk@mainsoft.com>
* TestBmpCodec.cs, TestJpegCodec.cs: ifdef unsafe code
for TARGET_JVM.
2006-09-01 Sebastien Pouliot <sebastien@ximian.com>
* GifCodecTest.cs: New. Unit tests for GIF codec.
* IconCodecTest.cs: New. Unit tests for ICON codec (not working).
* PngCodecTest.cs: New. Unit tests for PNG codec.
* TiffCodecTest.cs: New. Unit tests for TIFF codec.
2006-08-31 Sebastien Pouliot <sebastien@ximian.com>
* TestBmpCodec.cs: Add more test cases for 1, 8 and 32 bbp bitmaps
including checks for Pixels and BitmapData.
* TestImageCodecInfo.cs: Fix namespace and class name.
* TestJpegCodec.cs: Reactivate the tests (not sure why they were
commented). Added test cases for Pixel and BitmapData (NotWorking).
2006-08-25 Sebastien Pouliot <sebastien@ximian.com>
* TestBmpCodec.cs: Add pixel value tests to a well known bitmap.
2006-08-24 Sebastien Pouliot <sebastien@ximian.com>
* TestColorMatrix.cs: Add test cases for error handling inside ctor and
for testing each field with a different value.
2006-07-19 Sebastien Pouliot <sebastien@ximian.com>
* TestImageFormat.cs: Added test cases for well known image format
(which returns a human readable name when the ImageFormat comes from
the static properties).
2006-06-30 Sebastien Pouliot <sebastien@ximian.com>
* TestImageAttribute.cs: Fix namespace and split test for easier
search of a memory leak.
2006-05-29 Sebastien Pouliot <sebastien@ximian.com>
* TestImageFormat.cs: Added test cases for Equals and GetHashCode.
2006-05-24 Sebastien Pouliot <sebastien@ximian.com>
* TestImageFormat.cs: Update ToString expected outputs to match MS.
2006-05-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* TestBmpCodec.cs: Bitmap24bitFeatures works now.
2006-04-25 Peter Dennis Bartok <pbartok@novell.com>
* TestBmpCodec.cs: Marked the 24bit test as not working until
bug #78189 is fixed.
2006-01-25 Boris Kirzner <borisk@mainsoft.com>
*TestBmpCodec.cs, TestImageAttributes.cs, TestImageCodecInfo.cs:
added #ifdef for TARGET_JVM.
2005-11-13 Kornél Pál <kornelpal@hotmail.com>
* TestImageFormat.cs: Added ToStringTest.
2005-10-31 Jordi Mas i Hernandez <jordi@ximian.com>
* TestImageFormat.cs: New test unit
2005-09-16 Sebastien Pouliot <sebastien@ximian.com>
* TestBmpCodec.cs, TestColorMatrix.cs, TestImageAttributes.cs,
TestImageCodecInfo.cs, TestJpegCodec.cs: Deny UnmanagedCode permission
to all tests. This shows (when executed under MS runtime) that S.D API
is safe and doesn't requires high privileges to run - even if we know
that, deep down, this calls into GDI+.
2005-08-19 Jordi Mas i Hernandez <jordi@ximian.com>
* TestBmpCodec.cs: Enable PixelFormat tests
2005-08-16 Andrew Skiba <andrews@mainsoft.com>
* TestImageCodecInfo.cs: use regular expressions for results that may vary
while still in correct format, so same tests can be used for jvm
2005-08-09 Andrew Skiba <andrews@mainsoft.com>
* TestImageCodecInfo.cs: FormatID, CodecName, DllName, FilenameExtension,
Flags, FormatDescription, MimeType properties checked
2005-08-09 Andrew Skiba <andrews@mainsoft.com>
* TestImageCodecInfo.cs: refactor to make possible to add tests for all
properties, not only FormatID.
2004-03-22 Jordi Mas i Hernandez <jordi@ximian.com>
* TestColorMatrix.cs: added test case
* TestImageAttributes.cs: added test case
2004-06-10 Sanjay Gupta <gsanjay@novell.com>
* TestBmpCodec.cs, TestImageCodecInfo.cs, TestJpedCodec.cs: Removed
dependency on obsolete class, Assertion from NUnit.
2004-03-17 Ravindra <rkumar@novell.com>
* Created this repository for System.Drawing.Imaging tests.
* ChangeLog: Added.
|