Supports functional testing of AWT or Swing {@code Dialog}s.
Note: This class is intended for internal use only. Please use the classes in the package {@link org.fest.swing.fixture} in your tests.
80818283848586
super(DialogFixture.class, dialogName, Dialog.class); } @Override protected @Nonnull DialogDriver createDriver(@Nonnull Robot robot) { return new DialogDriver(robot); }
87888990919293
super(dialogName, Dialog.class); createDriver(); } private void createDriver() { driver(new DialogDriver(robot)); }