/hg/gfx-test: Added new tests to the test case src/org/gfxtest/t...

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Wed Dec 12 02:04:13 PST 2012


changeset 76335aa60853 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=76335aa60853
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Wed Dec 12 11:07:14 2012 +0100

	Added new tests to the test case src/org/gfxtest/testsuites/Paths.java.


diffstat:

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

diffs (194 lines):

diff -r 5840ab9aebf2 -r 76335aa60853 ChangeLog
--- a/ChangeLog	Tue Dec 11 09:26:03 2012 +0100
+++ b/ChangeLog	Wed Dec 12 11:07:14 2012 +0100
@@ -1,3 +1,8 @@
+2012-12-12  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* src/org/gfxtest/testsuites/Paths.java:
+	Added new tests to this test case.
+
 2012-12-11  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* src/org/gfxtest/testsuites/PrintTestBitBltUsingBgColor.java:
diff -r 5840ab9aebf2 -r 76335aa60853 src/org/gfxtest/testsuites/Paths.java
--- a/src/org/gfxtest/testsuites/Paths.java	Tue Dec 11 09:26:03 2012 +0100
+++ b/src/org/gfxtest/testsuites/Paths.java	Wed Dec 12 11:07:14 2012 +0100
@@ -306,6 +306,178 @@
     }
 
     /**
+     * Path is rendered using stroke paint with default 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 testLinePathFloatStrokePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // draw the path
+        drawLinePathFloat(image, graphics2d);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Path is rendered using stroke paint with default 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 testLinePathDoubleStrokePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // draw the path
+        drawLinePathDouble(image, graphics2d);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Path is rendered using stroke paint with default stroke width.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testQuadraticPathFloatStrokePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // draw the path
+        drawQuadraticPathFloat(image, graphics2d);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Path is rendered using stroke paint with default stroke width.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testQuadraticPathDoubleStrokePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // draw the path
+        drawQuadraticPathDouble(image, graphics2d);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Path is rendered using stroke paint with default stroke width.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testCubicPathFloatStrokePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // draw the path
+        drawCubicPathFloat(image, graphics2d);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Path is rendered using stroke paint with default stroke width.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testCubicPathDoubleStrokePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // draw the path
+        drawCubicPathDouble(image, graphics2d);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Path is rendered using stroke paint with default stroke width.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClosedPathFloatStrokePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // draw the path
+        drawClosedPathFloat(image, graphics2d);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Path is rendered using stroke paint with default stroke width.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testClosedPathDoubleStrokePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // draw the path
+        drawClosedPathDouble(image, graphics2d);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Path is rendered using stroke paint with default stroke width.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testCrossedClosedPathFloatStrokePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // draw the path
+        drawCrossedPathFloat(image, graphics2d);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
+     * Path is rendered using stroke paint with default stroke width.
+     * 
+     * @param image
+     *            work image
+     * @param graphics2d
+     *            graphics canvas
+     * @return test result status - PASSED, FAILED or ERROR
+     */
+    public TestResult testCrossedClosedPathDoubleStrokePaint(TestImage image, Graphics2D graphics2d)
+    {
+        // draw the path
+        drawCrossedPathDouble(image, graphics2d);
+        // test result
+        return TestResult.PASSED;
+    }
+
+    /**
      * Entry point to the test suite.
      * 
      * @param args



More information about the distro-pkg-dev mailing list