/hg/gfx-test: arcStep variable could be changed now by any test ...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Thu Sep 16 09:13:47 PDT 2010
changeset 122a326e04ad in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=122a326e04ad
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Thu Sep 16 18:14:11 2010 +0200
arcStep variable could be changed now by any test case. It is
useful, for example, to decrease number of images generated by some
tests.
diffstat:
1 file changed, 13 insertions(+), 2 deletions(-)
src/org/gfxtest/framework/GfxTest.java | 15 +++++++++++++--
diffs (38 lines):
diff -r f5fecf349633 -r 122a326e04ad src/org/gfxtest/framework/GfxTest.java
--- a/src/org/gfxtest/framework/GfxTest.java Tue Sep 14 18:38:43 2010 +0200
+++ b/src/org/gfxtest/framework/GfxTest.java Thu Sep 16 18:14:11 2010 +0200
@@ -56,6 +56,7 @@ public abstract class GfxTest
protected String suiteName = null;
protected static final int CROSS_SIZE = 20;
protected int currentTestNumber = 0;
+ private int arcStep = ARC_STEP;
/**
* Minor radius for circles, ellipses etc.
@@ -318,9 +319,9 @@ public abstract class GfxTest
int minArcHeight, int maxArcHeight, float[] dash1patterns, float[] dash2patterns, int cap, int join,
float width, float scale, float eccentricity)
{
- for (int arcHeight = minArcHeight; arcHeight <= maxArcHeight; arcHeight += ARC_STEP)
+ for (int arcHeight = minArcHeight; arcHeight <= maxArcHeight; arcHeight += this.arcStep)
{
- for (int arcWidth = minArcWidth; arcWidth <= maxArcWidth; arcWidth += ARC_STEP)
+ for (int arcWidth = minArcWidth; arcWidth <= maxArcWidth; arcWidth += this.arcStep)
{
drawEntityUsingVariousDashPatterns(configuration, dash1patterns, dash2patterns, cap, join, width,
scale, eccentricity, arcHeight, arcWidth);
@@ -510,4 +511,14 @@ public abstract class GfxTest
graphics.drawLine(x - size, y, x + size, y);
}
+ public int getArcStep()
+ {
+ return arcStep;
+ }
+
+ public void setArcStep(int arcStep)
+ {
+ this.arcStep = arcStep;
+ }
+
}
More information about the distro-pkg-dev
mailing list