@Test
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);
}