ChangeLog 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. 2006-08-16 Sebastien Pouliot <[email protected]>
  2. * GraphicsPathTest.cs: Ignore some test cases if we cannot get any
  3. font family from GDI+.
  4. * TestHatchBrush.cs: Ignore some test cases if we cannot get any font
  5. family from GDI+. Update to NUnit 2.2+ and fix getOutSufix method
  6. 2006-06-09 Sebastien Pouliot <[email protected]>
  7. * GraphicsPathTest.cs: Added test cases for IsVisible methods.
  8. 2006-06-07 Sebastien Pouliot <[email protected]>
  9. * GraphicsPathTest.cs: Added test cases for IsOutlineVisible methods.
  10. 2006-06-01 Sebastien Pouliot <[email protected]>
  11. * TestHatchBrush.cs: Some were surprisingly similar until...
  12. 2006-05-24 Sebastien Pouliot <[email protected]>
  13. * GraphicsPathTest.cs: Ignore some test cases that aren't implemented
  14. in libgdiplus and have different results in MS 1.x/2.0 (or between
  15. different executions, yuck).
  16. 2006-05-09 Sebastien Pouliot <[email protected]>
  17. * PathGradientBrushTest.cs: New. Unit tests (mostly) based on the test
  18. cases created for LinearGradientBrush.
  19. 2006-05-08 Sebastien Pouliot <[email protected]>
  20. * GraphicsPathTest.cs: Added test cases for Widen and Wrap with empty
  21. path (expected behaviour) and paths that have a single point (stranger
  22. behaviour). Changed comments on GetBounds_WithPen test case as it will
  23. probably never work under Mono due to difference in precisions.
  24. 2006-05-05 Sebastien Pouliot <[email protected]>
  25. * GraphicsPathTest.cs: Added more test cases for GetBounds and found
  26. out the results are very imprecise when curves are used (hence
  27. difficult to test but much easier to implement ;-)
  28. 2006-05-03 Sebastien Pouliot <[email protected]>
  29. * LinearGradientBrushTest.cs: Added new test case for #78185 (from
  30. Bill Holmes).
  31. 2006-05-01 Sebastien Pouliot <[email protected]>
  32. * LinearGradientBrushTest.cs: Added new test case for #78179 (from
  33. Bill Holmes).
  34. 2006-04-28 Sebastien Pouliot <[email protected]>
  35. * TestColorBlend.cs: Added new test cases to verify if the TODO were
  36. still valid. Updated existing test cases to nunit 2.2 api.
  37. * GraphicsPathTest.cs: Added new test cases for AddCurve and it's
  38. different behaviour (in some methods) when only two points are used
  39. to define a curve.
  40. 2006-04-27 Sebastien Pouliot <[email protected]>
  41. * GraphicsPathTest.cs: Activate two unit tests where we use AddLines
  42. to add a single point to a path.
  43. 2006-04-27 Sebastien Pouliot <[email protected]>
  44. * GraphicsPathTest.cs: Added new test cases for AddString.
  45. 2006-04-20 Sebastien Pouliot <[email protected]>
  46. * LinearGradientBrushTest.cs: Remove "NonWorking" from many test
  47. cases. Added more test cases for non-invertible matrix and to ensure
  48. all matrix-based transformation are correct.
  49. 2006-04-19 Sebastien Pouliot <[email protected]>
  50. * GraphicsPathTest.cs: Add test cases for Wrap and Widen (most of them
  51. are current "NotWorking").
  52. 2006-04-10 Sebastien Pouliot <[email protected]>
  53. * TestMatrix.cs: Added new test cases for contructors accepting
  54. rectangles and points.
  55. 2006-03-30 Sebastien Pouliot <[email protected]>
  56. * LinearGradientBrushTest.cs: Added a bunch of test cases to check
  57. for the "initial" matrix of the brush (which we don't set).
  58. * TestMatrix.cs: Added test cases about matrix identity precision.
  59. 2006-03-29 Sebastien Pouliot <[email protected]>
  60. * GraphicsPathTest.cs: Add test cases for every Add* method to check
  61. their (different) behaviour wrt starting and closing figures in the
  62. path they are added.
  63. 2006-03-28 Sebastien Pouliot <[email protected]>
  64. * TestMatrix.cs: Added new test cases.
  65. 2006-03-22 Sebastien Pouliot <[email protected]>
  66. * LinearGradientBrushTest.cs: New. Some unit tests (moslty failing).
  67. 2006-03-14 Sebastien Pouliot <[email protected]>
  68. * TestMatrix.cs: Added new test cases to test libgdiplus validations.
  69. 2006-03-13 Sebastien Pouliot <[email protected]>
  70. * GraphicsPathTest.cs: Added new test cases for SetMarkers,
  71. ClearMarkers, CloseFigure and CloseAllFigures on an empty path.
  72. 2006-01-27 Sebastien Pouliot <[email protected]>
  73. * GraphicsPathTest.cs: Removed "NotWorking" from existing Flatten
  74. tests and added more test cases (for each type of shape).
  75. 2006-01-16 Sebastien Pouliot <[email protected]>
  76. * GraphicsPathTest.cs: Added test cases for GetBounds and re-activated
  77. some parts of the tests that checked bounds (Add* tests).
  78. 2006-01-13 Sebastien Pouliot <[email protected]>
  79. * GraphicsPathTest.cs: New. Added multiple test cases to check null
  80. handling and how the points are generated for the Add* methods.
  81. * PathDataTest.cs: New. Added clone test case.
  82. 2006-01-12 Sebastien Pouliot <[email protected]>
  83. * GraphicsPathTest.cs: New. Basic test cases for empty path and
  84. cloning.
  85. * PathDataTest.cs: New. Test cases for PathData.
  86. 2005-09-16 Sebastien Pouliot <[email protected]>
  87. * TestBlend.cs, TestColorBlend.cs, TestHatchBrush.cs, TestMatrix.cs:
  88. Deny UnmanagedCode permission to all tests. This shows (when executed
  89. under MS runtime) that S.D API is safe and doesn't requires high
  90. privileges to run - even if we know that, deep down, this calls into
  91. GDI+.
  92. 2005-08-25 Jordi Mas i Hernandez <[email protected]>
  93. * TestMatrix.cs: New test cases
  94. 2005-08-24 Jordi Mas i Hernandez <[email protected]>
  95. * TestMatrix.cs: New Matrix unit case
  96. 2004-06-03 Ravindra <[email protected]>
  97. * TestHatchBrush.cs: Added missing test cases for all the hatch
  98. styles.
  99. 2004-05-18 Ravindra <[email protected]>
  100. * TestHatchBrush.cs: Added a test case for HatchBrush.cs.
  101. * TestBlend.cs: dos2unix format and namespace changed to
  102. MonoTests.System.Drawing.Drawing2D.
  103. * TestColorBlend.cs: dos2unix format and namespace changed to
  104. MonoTests.System.Drawing.Drawing2D.
  105. 2004-03-17 Ravindra <[email protected]>
  106. * TestBlend.cs: Added.
  107. * TestColorBlend.cs: Added.
  108. 2004-03-17 Ravindra <[email protected]>
  109. * System.Drawing.Drawing2D: Created a repository for
  110. System.Drawing.Drawing2D tests.
  111. * ChangeLog: Added.