Supports functional testing of {@code JOptionPane}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.
61626364656667
super(JOptionPaneFixture.class, robot, target); } @Override protected @Nonnull JOptionPaneDriver createDriver(@Nonnull Robot robot) { return new JOptionPaneDriver(robot); }
63646566676869
* @throws NullPointerException if <code>robot</code> is <code>null</code>. * @throws IllegalArgumentException if <code>target</code> is <code>null</code>. */ public JOptionPaneFixture(Robot robot, JOptionPane target) { super(robot, target); driver(new JOptionPaneDriver(robot)); }