diff options
author | Sven Gothel <[email protected]> | 2011-09-16 10:57:25 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-09-16 10:57:25 +0200 |
commit | aca09874bd3abe651f88ead28154fa2feefbd6a6 (patch) | |
tree | 9915bc33da97422045e5b8f57e4e41c8c0c84b86 /src/test | |
parent | 85f60adb5ae675af4bf81c0a7e69ec836aa50a4b (diff) |
minor edits
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/com/jogamp/opengl/test/junit/newt/TestFocus01SwingAWTRobot.java | 5 | ||||
-rw-r--r-- | src/test/com/jogamp/opengl/test/junit/util/AWTRobotUtil.java | 10 |
2 files changed, 10 insertions, 5 deletions
diff --git a/src/test/com/jogamp/opengl/test/junit/newt/TestFocus01SwingAWTRobot.java b/src/test/com/jogamp/opengl/test/junit/newt/TestFocus01SwingAWTRobot.java index 28e346a70..1c7689b92 100644 --- a/src/test/com/jogamp/opengl/test/junit/newt/TestFocus01SwingAWTRobot.java +++ b/src/test/com/jogamp/opengl/test/junit/newt/TestFocus01SwingAWTRobot.java @@ -43,7 +43,9 @@ import javax.media.opengl.GLEventListener; import javax.swing.JFrame; import java.util.ArrayList; +import java.io.BufferedReader; import java.io.IOException; +import java.io.InputStreamReader; import org.junit.BeforeClass; import org.junit.Test; @@ -204,6 +206,9 @@ public class TestFocus01SwingAWTRobot extends UITestCase { durationPerTest = atoi(args[++i]); } } + // BufferedReader stdin = new BufferedReader(new InputStreamReader(System.in)); + // System.err.println("Press enter to continue"); + // System.err.println(stdin.readLine()); System.out.println("durationPerTest: "+durationPerTest); String tstname = TestFocus01SwingAWTRobot.class.getName(); org.junit.runner.JUnitCore.main(tstname); diff --git a/src/test/com/jogamp/opengl/test/junit/util/AWTRobotUtil.java b/src/test/com/jogamp/opengl/test/junit/util/AWTRobotUtil.java index 7b550993e..af3c771f3 100644 --- a/src/test/com/jogamp/opengl/test/junit/util/AWTRobotUtil.java +++ b/src/test/com/jogamp/opengl/test/junit/util/AWTRobotUtil.java @@ -50,11 +50,11 @@ public class AWTRobotUtil { static final boolean DEBUG = false; - public static int RETRY_NUMBER = 5; - public static int ROBOT_DELAY = 100; // ms - public static int TIME_OUT = 1000; // 1s - public static int POLL_DIVIDER = 20; // TO/20 - public static int TIME_SLICE = TIME_OUT / POLL_DIVIDER ; + public static final int RETRY_NUMBER = 5; + public static final int ROBOT_DELAY = 100; // ms + public static final int TIME_OUT = 1000; // 1s + public static final int POLL_DIVIDER = 20; // TO/20 + public static final int TIME_SLICE = TIME_OUT / POLL_DIVIDER ; public static Integer AWT_CLICK_TO = null; public static Point getCenterLocation(Object obj) |