/hg/gfx-test: Added yet another five new tests into ClippingCirc...

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Fri Nov 6 13:04:51 UTC 2015


changeset 90d9d455614b in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=90d9d455614b
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Fri Nov 06 14:07:51 2015 +0100

	Added yet another five new tests into ClippingCircleByRectangleArea.


diffstat:

 ChangeLog                                                     |   5 +
 src/org/gfxtest/testsuites/ClippingCircleByRectangleArea.java |  90 +++++++++++
 2 files changed, 95 insertions(+), 0 deletions(-)

diffs (112 lines):

diff -r 1cc56c3e0b4d -r 90d9d455614b ChangeLog
--- a/ChangeLog	Fri Nov 06 14:01:12 2015 +0100
+++ b/ChangeLog	Fri Nov 06 14:07:51 2015 +0100
@@ -1,3 +1,8 @@
+2015-11-06  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/gfxtest/testsuites/ClippingCircleByRectangleArea.java:
+	Added yet another five new tests into ClippingCircleByRectangleArea.
+
 2015-11-06  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/gfxtest/testsuites/ClippingCircleByRectangleArea.java:
diff -r 1cc56c3e0b4d -r 90d9d455614b src/org/gfxtest/testsuites/ClippingCircleByRectangleArea.java
--- a/src/org/gfxtest/testsuites/ClippingCircleByRectangleArea.java	Fri Nov 06 14:01:12 2015 +0100
+++ b/src/org/gfxtest/testsuites/ClippingCircleByRectangleArea.java	Fri Nov 06 14:07:51 2015 +0100
@@ -972,6 +972,96 @@
 
     /**
      * Check if circle shape could be clipped by a rectangular area. Circle is
+     * rendered using alpha paint with yellow color at 0% transparency.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByRectangleAreaAlphaPaintYellow000(TestImage image, Graphics2D graphics2d)
+    {
+        // draw circle clipped by rectangle area using alpha paint with 0% transparency
+        drawCircleClippedByRectangleAreaAlphaPaintYellow(image, graphics2d, 0);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Check if circle shape could be clipped by a rectangular area. Circle is
+     * rendered using alpha paint with yellow color at 25% transparency.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByRectangleAreaAlphaPaintYellow025(TestImage image, Graphics2D graphics2d)
+    {
+        // draw circle clipped by rectangle area using alpha paint with 25% transparency
+        drawCircleClippedByRectangleAreaAlphaPaintYellow(image, graphics2d, 25);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Check if circle shape could be clipped by a rectangular area. Circle is
+     * rendered using alpha paint with yellow color at 50% transparency.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByRectangleAreaAlphaPaintYellow050(TestImage image, Graphics2D graphics2d)
+    {
+        // draw circle clipped by rectangle area using alpha paint with 50% transparency
+        drawCircleClippedByRectangleAreaAlphaPaintYellow(image, graphics2d, 50);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Check if circle shape could be clipped by a rectangular area. Circle is
+     * rendered using alpha paint with yellow color at 75% transparency.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByRectangleAreaAlphaPaintYellow075(TestImage image, Graphics2D graphics2d)
+    {
+        // draw circle clipped by rectangle area using alpha paint with 75% transparency
+        drawCircleClippedByRectangleAreaAlphaPaintYellow(image, graphics2d, 75);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Check if circle shape could be clipped by a rectangular area. Circle is
+     * rendered using alpha paint with yellow color at 100% transparency.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClipCircleByRectangleAreaAlphaPaintYellow100(TestImage image, Graphics2D graphics2d)
+    {
+        // draw circle clipped by rectangle area using alpha paint with 100% transparency
+        drawCircleClippedByRectangleAreaAlphaPaintYellow(image, graphics2d, 100);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Check if circle shape could be clipped by a rectangular area. Circle is
      * rendered using alpha paint with white color at 0% transparency.
      * 
      * @param image


More information about the distro-pkg-dev mailing list