ChangeLog 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  1. 2010-07-15 Sebastien Pouliot <[email protected]>
  2. * LinearGradientBrushTest.cs: Add test case for #537396 (empty rects)
  3. 2009-08-28 Atsushi Enomoto <[email protected]>
  4. * TestBlend.cs, TestMatrix.cs : nunit test upgrade to modern style.
  5. 2008-12-23 Sebastien Pouliot <[email protected]>
  6. * GraphicsPathTest.cs, LinearGradientBrushTest.cs, TestMatrix.cs:
  7. Add delta when comparing floating point values since there can be
  8. small differences between different platforms.
  9. 2008-12-10 Atsushi Enomoto <[email protected]>
  10. * LinearGradientBrushTest.cs, GraphicsPathTest.cs,
  11. TestMatrix.cs : fix tests wrt rounding that were failing on .NET
  12. too (exposed by nunit24).
  13. 2008-11-01 Sebastien Pouliot <[email protected]>
  14. * GraphicsPathIteratorTest.cs: New. Add some (incomplete) unit
  15. tests for GraphicsPathIterator. Test cases are mostly to ensure
  16. null check compatibility with MS.
  17. * LinearGradientBrushTest.cs: Add test case when setting null
  18. on properties.
  19. * PathGradientBrushTest.cs: Add test case when setting null
  20. on properties.
  21. 2008-09-03 Sebastien Pouliot <[email protected]>
  22. * GraphicsPathTest.cs: Add unit test to check for an open curve
  23. points.
  24. 2008-09-02 Sebastien Pouliot <[email protected]>
  25. * GraphicsPathTest.cs: Add a bunch of unit tests to check when
  26. points can be compressed (removed) when adding shapes to a path.
  27. 2008-08-04 Sebastien Pouliot <[email protected]>
  28. * GraphicsPathTest.cs: Add test case for "half" closed paths.
  29. [Bug #413461]
  30. 2007-10-30 Sebastien Pouliot <[email protected]>
  31. * GraphicsPathTest.cs: Added IsVisible test cases on ellipses
  32. (#325502)
  33. 2007-07-31 Sebastien Pouliot <[email protected]>
  34. * GraphicsPathTest.cs: Added more test cases for Reverse based on the
  35. C test cases provided in #81859.
  36. 2007-07-30 Sebastien Pouliot <[email protected]>
  37. * GraphicsPathTest.cs: Added more test cases for Reverse, the complex
  38. ones don't work yet (see #81859).
  39. 2007-03-30 Sebastien Pouliot <[email protected]>
  40. * TestMatrix.cs: Allow a small delta when comparing floats. This
  41. allows the ARM to work properly (e.g. -9.999995 versus -10).
  42. 2006-09-26 Sebastien Pouliot <[email protected]>
  43. * GraphicsPathTest.cs: Added test case for Reverse (and found out that
  44. the types aren't reversed, only the points are).
  45. 2006-09-18 Boris Kirzner <[email protected]>
  46. * TestColorBlend.cs,TestHatchBrush.cs : marked tests not working
  47. for TARGET_JVM.
  48. 2006-08-16 Sebastien Pouliot <[email protected]>
  49. * GraphicsPathTest.cs: Ignore some test cases if we cannot get any
  50. font family from GDI+.
  51. * TestHatchBrush.cs: Ignore some test cases if we cannot get any font
  52. family from GDI+. Update to NUnit 2.2+ and fix getOutSufix method
  53. 2006-06-09 Sebastien Pouliot <[email protected]>
  54. * GraphicsPathTest.cs: Added test cases for IsVisible methods.
  55. 2006-06-07 Sebastien Pouliot <[email protected]>
  56. * GraphicsPathTest.cs: Added test cases for IsOutlineVisible methods.
  57. 2006-06-01 Sebastien Pouliot <[email protected]>
  58. * TestHatchBrush.cs: Some were surprisingly similar until...
  59. 2006-05-24 Sebastien Pouliot <[email protected]>
  60. * GraphicsPathTest.cs: Ignore some test cases that aren't implemented
  61. in libgdiplus and have different results in MS 1.x/2.0 (or between
  62. different executions, yuck).
  63. 2006-05-09 Sebastien Pouliot <[email protected]>
  64. * PathGradientBrushTest.cs: New. Unit tests (mostly) based on the test
  65. cases created for LinearGradientBrush.
  66. 2006-05-08 Sebastien Pouliot <[email protected]>
  67. * GraphicsPathTest.cs: Added test cases for Widen and Wrap with empty
  68. path (expected behaviour) and paths that have a single point (stranger
  69. behaviour). Changed comments on GetBounds_WithPen test case as it will
  70. probably never work under Mono due to difference in precisions.
  71. 2006-05-05 Sebastien Pouliot <[email protected]>
  72. * GraphicsPathTest.cs: Added more test cases for GetBounds and found
  73. out the results are very imprecise when curves are used (hence
  74. difficult to test but much easier to implement ;-)
  75. 2006-05-03 Sebastien Pouliot <[email protected]>
  76. * LinearGradientBrushTest.cs: Added new test case for #78185 (from
  77. Bill Holmes).
  78. 2006-05-01 Sebastien Pouliot <[email protected]>
  79. * LinearGradientBrushTest.cs: Added new test case for #78179 (from
  80. Bill Holmes).
  81. 2006-04-28 Sebastien Pouliot <[email protected]>
  82. * TestColorBlend.cs: Added new test cases to verify if the TODO were
  83. still valid. Updated existing test cases to nunit 2.2 api.
  84. * GraphicsPathTest.cs: Added new test cases for AddCurve and it's
  85. different behaviour (in some methods) when only two points are used
  86. to define a curve.
  87. 2006-04-27 Sebastien Pouliot <[email protected]>
  88. * GraphicsPathTest.cs: Activate two unit tests where we use AddLines
  89. to add a single point to a path.
  90. 2006-04-27 Sebastien Pouliot <[email protected]>
  91. * GraphicsPathTest.cs: Added new test cases for AddString.
  92. 2006-04-20 Sebastien Pouliot <[email protected]>
  93. * LinearGradientBrushTest.cs: Remove "NonWorking" from many test
  94. cases. Added more test cases for non-invertible matrix and to ensure
  95. all matrix-based transformation are correct.
  96. 2006-04-19 Sebastien Pouliot <[email protected]>
  97. * GraphicsPathTest.cs: Add test cases for Wrap and Widen (most of them
  98. are current "NotWorking").
  99. 2006-04-10 Sebastien Pouliot <[email protected]>
  100. * TestMatrix.cs: Added new test cases for contructors accepting
  101. rectangles and points.
  102. 2006-03-30 Sebastien Pouliot <[email protected]>
  103. * LinearGradientBrushTest.cs: Added a bunch of test cases to check
  104. for the "initial" matrix of the brush (which we don't set).
  105. * TestMatrix.cs: Added test cases about matrix identity precision.
  106. 2006-03-29 Sebastien Pouliot <[email protected]>
  107. * GraphicsPathTest.cs: Add test cases for every Add* method to check
  108. their (different) behaviour wrt starting and closing figures in the
  109. path they are added.
  110. 2006-03-28 Sebastien Pouliot <[email protected]>
  111. * TestMatrix.cs: Added new test cases.
  112. 2006-03-22 Sebastien Pouliot <[email protected]>
  113. * LinearGradientBrushTest.cs: New. Some unit tests (moslty failing).
  114. 2006-03-14 Sebastien Pouliot <[email protected]>
  115. * TestMatrix.cs: Added new test cases to test libgdiplus validations.
  116. 2006-03-13 Sebastien Pouliot <[email protected]>
  117. * GraphicsPathTest.cs: Added new test cases for SetMarkers,
  118. ClearMarkers, CloseFigure and CloseAllFigures on an empty path.
  119. 2006-01-27 Sebastien Pouliot <[email protected]>
  120. * GraphicsPathTest.cs: Removed "NotWorking" from existing Flatten
  121. tests and added more test cases (for each type of shape).
  122. 2006-01-16 Sebastien Pouliot <[email protected]>
  123. * GraphicsPathTest.cs: Added test cases for GetBounds and re-activated
  124. some parts of the tests that checked bounds (Add* tests).
  125. 2006-01-13 Sebastien Pouliot <[email protected]>
  126. * GraphicsPathTest.cs: New. Added multiple test cases to check null
  127. handling and how the points are generated for the Add* methods.
  128. * PathDataTest.cs: New. Added clone test case.
  129. 2006-01-12 Sebastien Pouliot <[email protected]>
  130. * GraphicsPathTest.cs: New. Basic test cases for empty path and
  131. cloning.
  132. * PathDataTest.cs: New. Test cases for PathData.
  133. 2005-09-16 Sebastien Pouliot <[email protected]>
  134. * TestBlend.cs, TestColorBlend.cs, TestHatchBrush.cs, TestMatrix.cs:
  135. Deny UnmanagedCode permission to all tests. This shows (when executed
  136. under MS runtime) that S.D API is safe and doesn't requires high
  137. privileges to run - even if we know that, deep down, this calls into
  138. GDI+.
  139. 2005-08-25 Jordi Mas i Hernandez <[email protected]>
  140. * TestMatrix.cs: New test cases
  141. 2005-08-24 Jordi Mas i Hernandez <[email protected]>
  142. * TestMatrix.cs: New Matrix unit case
  143. 2004-06-03 Ravindra <[email protected]>
  144. * TestHatchBrush.cs: Added missing test cases for all the hatch
  145. styles.
  146. 2004-05-18 Ravindra <[email protected]>
  147. * TestHatchBrush.cs: Added a test case for HatchBrush.cs.
  148. * TestBlend.cs: dos2unix format and namespace changed to
  149. MonoTests.System.Drawing.Drawing2D.
  150. * TestColorBlend.cs: dos2unix format and namespace changed to
  151. MonoTests.System.Drawing.Drawing2D.
  152. 2004-03-17 Ravindra <[email protected]>
  153. * TestBlend.cs: Added.
  154. * TestColorBlend.cs: Added.
  155. 2004-03-17 Ravindra <[email protected]>
  156. * System.Drawing.Drawing2D: Created a repository for
  157. System.Drawing.Drawing2D tests.
  158. * ChangeLog: Added.