/hg/gfx-test: Additional tests added into the test suite Paths.j...

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Mon Feb 18 00:27:37 PST 2013


changeset 5b0110c99263 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=5b0110c99263
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Mon Feb 18 09:30:47 2013 +0100

	Additional tests added into the test suite Paths.java.


diffstat:

 ChangeLog                             |   5 +++
 src/org/gfxtest/testsuites/Paths.java |  46 +++++++++++++++++++++++++++++++++++
 2 files changed, 51 insertions(+), 0 deletions(-)

diffs (68 lines):

diff -r 322a567e89ed -r 5b0110c99263 ChangeLog
--- a/ChangeLog	Fri Feb 08 09:59:53 2013 +0100
+++ b/ChangeLog	Mon Feb 18 09:30:47 2013 +0100
@@ -1,3 +1,8 @@
+2013-02-11  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/gfxtest/testsuites/Paths.java:
+	Additional tests added into the test suite Paths.java.
+
 2013-02-08  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/gfxtest/testsuites/Paths.java:
diff -r 322a567e89ed -r 5b0110c99263 src/org/gfxtest/testsuites/Paths.java
--- a/src/org/gfxtest/testsuites/Paths.java	Fri Feb 08 09:59:53 2013 +0100
+++ b/src/org/gfxtest/testsuites/Paths.java	Mon Feb 18 09:30:47 2013 +0100
@@ -1388,6 +1388,52 @@
     }
 
     /**
+     * Check if line path could be clipped by an ellipse shape. Path is
+     * rendered using stroke paint with thick stroke width.
+     * Line path is constructed using new Path.Float()
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testLinePathFloatDashedThickStrokePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // set stroke width
+        CommonRenderingStyles.setStrokeThickWidth(graphics2d);
+        // set dashed pattern
+        CommonRenderingStyles.setDashedStrokePattern(graphics2d);
+        // draw the path
+        drawLinePathFloat(image, graphics2d);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Check if line path could be clipped by an ellipse shape. Path is
+     * rendered using stroke paint with thick stroke width.
+     * Line path is constructed using new Path.Double()
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testLinePathDoubleDashedThickStrokePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // set stroke width
+        CommonRenderingStyles.setStrokeThickWidth(graphics2d);
+        // set dashed pattern
+        CommonRenderingStyles.setDashedStrokePattern(graphics2d);
+        // draw the path
+        drawLinePathDouble(image, graphics2d);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
      * Entry point to the test suite.
      * 
      * @param args



More information about the distro-pkg-dev mailing list