diff options
author | Sven Gothel <[email protected]> | 2013-06-25 12:26:04 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-06-25 12:26:04 +0200 |
commit | 7fe9adcd1e8649dca84d180102ed14f55a9963cb (patch) | |
tree | de2a5df51f53d0dd298cd7c2e1f76af443ddc7ef | |
parent | d3e5d510e30c207654301f60e2f7261e289d9e63 (diff) |
TestFocus02SwingAWTRobot: Fix Java7 'changed behavior': Relax focus traversal validation checks.
-rw-r--r-- | src/test/com/jogamp/opengl/test/junit/newt/TestFocus02SwingAWTRobot.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/com/jogamp/opengl/test/junit/newt/TestFocus02SwingAWTRobot.java b/src/test/com/jogamp/opengl/test/junit/newt/TestFocus02SwingAWTRobot.java index 646dc711b..5b07c73bd 100644 --- a/src/test/com/jogamp/opengl/test/junit/newt/TestFocus02SwingAWTRobot.java +++ b/src/test/com/jogamp/opengl/test/junit/newt/TestFocus02SwingAWTRobot.java @@ -224,6 +224,7 @@ public class TestFocus02SwingAWTRobot extends UITestCase { System.err.println("FOCUS AWT Button request"); EventCountAdapterUtil.reset(eventCountAdapters); AWTRobotUtil.assertRequestFocusAndWait(robot, buttonNorthInner, buttonNorthInner, buttonNorthInnerFA, glWindow1FA); + Assert.assertEquals(false, glWindow1FA.focusGained()); Assert.assertEquals(false, newtCanvasAWTFA.focusGained()); Assert.assertEquals(false, buttonNorthOuterFA.focusGained()); System.err.println("FOCUS AWT Button sync"); @@ -246,7 +247,6 @@ public class TestFocus02SwingAWTRobot extends UITestCase { System.err.println("Info: Focus prev. gained, but NewtCanvasAWT didn't loose it. Gainer: "+glWindow1FA+"; Looser "+newtCanvasAWTFA); } - Assert.assertEquals(false, newtCanvasAWTFA.focusGained()); Assert.assertEquals(false, buttonNorthOuterFA.focusGained()); System.err.println("FOCUS NEWT Canvas/GLWindow sync"); AWTRobotUtil.assertKeyType(robot, java.awt.event.KeyEvent.VK_A, 2, glWindow1, glWindow1KA); |