From 7ade43ed57bd37b8a7d9655bc36c71e615793a1a Mon Sep 17 00:00:00 2001 From: Ben Soares Date: Tue, 18 Jul 2023 14:19:15 +0100 Subject: [PATCH] JAL-4513 add a SwingUtilities.invokeAndWait() to see what happens --- test/jalview/io/cache/JvCacheableInputBoxTest.java | 38 +++++++++++++++----- 1 file changed, 29 insertions(+), 9 deletions(-) diff --git a/test/jalview/io/cache/JvCacheableInputBoxTest.java b/test/jalview/io/cache/JvCacheableInputBoxTest.java index 9946f4c..54152a6 100644 --- a/test/jalview/io/cache/JvCacheableInputBoxTest.java +++ b/test/jalview/io/cache/JvCacheableInputBoxTest.java @@ -20,8 +20,11 @@ */ package jalview.io.cache; +import java.lang.reflect.InvocationTargetException; import java.util.LinkedHashSet; +import javax.swing.SwingUtilities; + import org.junit.Assert; import org.testng.annotations.BeforeClass; import org.testng.annotations.Test; @@ -54,11 +57,19 @@ public class JvCacheableInputBoxTest try { - // This delay is essential to prevent the - // assertion below from executing before - // swing thread finishes updating the combo-box - Thread.sleep(350); - } catch (InterruptedException e) + SwingUtilities.invokeAndWait(() -> { + try + { + // This delay is essential to prevent the + // assertion below from executing before + // swing thread finishes updating the combo-box + Thread.sleep(10); + } catch (InterruptedException e) + { + e.printStackTrace(); + } + }); + } catch (InvocationTargetException | InterruptedException e) { e.printStackTrace(); } @@ -73,12 +84,21 @@ public class JvCacheableInputBoxTest cacheBox.addItem(testInput); cacheBox.setSelectedItem(testInput); cacheBox.updateCache(); + try { - // This delay is to let - // cacheBox.updateCache() finish updating the cache - Thread.sleep(350); - } catch (InterruptedException e) + SwingUtilities.invokeAndWait(() -> { + try + { + // This delay is to let + // cacheBox.updateCache() finish updating the cache + Thread.sleep(10); + } catch (InterruptedException e) + { + e.printStackTrace(); + } + }); + } catch (InvocationTargetException | InterruptedException e) { e.printStackTrace(); } -- 1.7.10.2