/hg/gfx-test: Three new tests added into CAGOperationsOnTwoConce...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Thu Jan 30 01:51:25 PST 2014
changeset a91f8aca3ad3 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=a91f8aca3ad3
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Thu Jan 30 10:55:41 2014 +0100
Three new tests added into CAGOperationsOnTwoConcentricCircles test suite.
diffstat:
ChangeLog | 5 +
src/org/gfxtest/testsuites/CAGOperationsOnRoundRectangleAndRectangle.java | 75 ++++++++++
2 files changed, 80 insertions(+), 0 deletions(-)
diffs (97 lines):
diff -r 4d96b464d9a8 -r a91f8aca3ad3 ChangeLog
--- a/ChangeLog Wed Jan 29 12:41:42 2014 +0100
+++ b/ChangeLog Thu Jan 30 10:55:41 2014 +0100
@@ -1,3 +1,8 @@
+2014-01-30 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * src/org/gfxtest/testsuites/CAGOperationsOnRoundRectangleAndRectangle.java:
+ Three new tests added into CAGOperationsOnTwoConcentricCircles test suite.
+
2014-01-29 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/testsuites/CAGOperationsOnTwoConcentricCircles.java:
diff -r 4d96b464d9a8 -r a91f8aca3ad3 src/org/gfxtest/testsuites/CAGOperationsOnRoundRectangleAndRectangle.java
--- a/src/org/gfxtest/testsuites/CAGOperationsOnRoundRectangleAndRectangle.java Wed Jan 29 12:41:42 2014 +0100
+++ b/src/org/gfxtest/testsuites/CAGOperationsOnRoundRectangleAndRectangle.java Thu Jan 30 10:55:41 2014 +0100
@@ -369,6 +369,81 @@
}
/**
+ * Checks the process of creating and rendering new geometric shape
+ * constructed from two rectangles using inverse subtract operator. The shape is
+ * rendered using extra wide stroke.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testInverseSubtractExtraWideStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics2d);
+ // set stroke width
+ CommonRenderingStyles.setStrokeExtraThickWidth(graphics2d);
+ // create area using union operator
+ Area area = CommonCAGOperations.createAreaFromRoundRectangleAndRectangleUsingInverseSubtractOperator(image);
+ // draw the area
+ graphics2d.draw(area);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Checks the process of creating and rendering new geometric shape
+ * constructed from two rectangles using intersect operator. The shape is
+ * rendered using extra wide stroke.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testIntersectExtraWideStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics2d);
+ // set stroke width
+ CommonRenderingStyles.setStrokeExtraThickWidth(graphics2d);
+ // create area using union operator
+ Area area = CommonCAGOperations.createAreaFromRoundRectangleAndRectangleUsingIntersectOperator(image);
+ // draw the area
+ graphics2d.draw(area);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
+ * Checks the process of creating and rendering new geometric shape
+ * constructed from two rectangles using exclusive or operator. The shape is
+ * rendered using extra wide stroke.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @param graphics2d
+ * graphics canvas
+ * @return test result status - PASSED, FAILED or ERROR
+ */
+ public TestResult testXorExtraWideStrokePaint(TestImage image, Graphics2D graphics2d)
+ {
+ // set stroke color
+ CommonRenderingStyles.setStrokeColor(graphics2d);
+ // set stroke width
+ CommonRenderingStyles.setStrokeExtraThickWidth(graphics2d);
+ // create area using union operator
+ Area area = CommonCAGOperations.createAreaFromRoundRectangleAndRectangleUsingXorOperator(image);
+ // draw the area
+ graphics2d.draw(area);
+ // test result
+ return TestResult.PASSED;
+ }
+
+ /**
* Entry point to the test suite.
*
* @param args not used in this case
More information about the distro-pkg-dev
mailing list