public void should_not_block() {
TestWindow window = TestWindow.createNewWindow(getClass());
robot.showWindow(window);
MyDialog.createAndShowNew(window);
DialogFixture found = findDialog(JDialog.class).using(robot);
assertThat(found.target()).isInstanceOf(MyDialog.class);
}
private static class MyDialog extends TestDialog {
@RunsInEDT
static void createAndShowNew(final Frame owner) {