/hg/gfx-test: New tests added into CAGOperationsOnTwoConcentricC...

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Thu Nov 7 00:19:58 PST 2013


changeset b233bf900e56 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=b233bf900e56
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Thu Nov 07 09:23:52 2013 +0100

	New tests added into CAGOperationsOnTwoConcentricCircles test suite.


diffstat:

 ChangeLog                                                           |   5 +
 src/org/gfxtest/testsuites/CAGOperationsOnTwoConcentricCircles.java |  50 ++++++++++
 2 files changed, 55 insertions(+), 0 deletions(-)

diffs (72 lines):

diff -r 1519d3e53dea -r b233bf900e56 ChangeLog
--- a/ChangeLog	Wed Nov 06 10:31:05 2013 +0100
+++ b/ChangeLog	Thu Nov 07 09:23:52 2013 +0100
@@ -1,3 +1,8 @@
+2013-11-07  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/gfxtest/testsuites/CAGOperationsOnTwoConcentricCircles.java:
+	New tests added into CAGOperationsOnTwoConcentricCircles test suite.
+
 2013-11-06  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/gfxtest/testsuites/CAGOperationsOnCircleAndRectangle.java:
diff -r 1519d3e53dea -r b233bf900e56 src/org/gfxtest/testsuites/CAGOperationsOnTwoConcentricCircles.java
--- a/src/org/gfxtest/testsuites/CAGOperationsOnTwoConcentricCircles.java	Wed Nov 06 10:31:05 2013 +0100
+++ b/src/org/gfxtest/testsuites/CAGOperationsOnTwoConcentricCircles.java	Thu Nov 07 09:23:52 2013 +0100
@@ -1059,6 +1059,56 @@
     }
 
     /**
+     * Checks the process of creating and rendering new geometric shape
+     * constructed from two concentric circles using union operator. The shape is rendered
+     * using texture paint (fill).
+     * 
+     * @param image
+     *            image to which area is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testUnionTextureFillUsingCheckerTexture(TestImage image, Graphics2D graphics2d)
+    {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics2d);
+        // set fill color
+        CommonRenderingStyles.setTextureFillUsingCheckerTexture(image, graphics2d);
+        // create area using union operator
+        Area area = CommonCAGOperations.createAreaFromTwoConcentricCirclesUsingUnionOperator(image);
+        // draw the area
+        graphics2d.fill(area);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Checks the process of creating and rendering new geometric shape
+     * constructed from two concentric circles using union operator. The shape is rendered
+     * using texture paint (fill).
+     * 
+     * @param image
+     *            image to which area is to be drawn
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testUnionTextureFillUsingDiagonalCheckerTexture(TestImage image, Graphics2D graphics2d)
+    {
+        // set stroke color
+        CommonRenderingStyles.setStrokeColor(graphics2d);
+        // set fill color
+        CommonRenderingStyles.setTextureFillUsingDiagonalCheckerTexture(image, graphics2d);
+        // create area using union operator
+        Area area = CommonCAGOperations.createAreaFromTwoConcentricCirclesUsingUnionOperator(image);
+        // draw the area
+        graphics2d.fill(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