Supports functional testing of {@code JComponent}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.
58596061626364
super(JPanelFixture.class, robot, target); } @Override protected @Nonnull JComponentDriver createDriver(@Nonnull Robot robot) { return new JComponentDriver(robot); }
70717273747576
super(JTextFieldFixture.class, robot, target); } @Override protected @Nonnull JComponentDriver createDriver(@Nonnull Robot robot) { return new JComponentDriver(robot); }
65666768697071
super(robot, target); createDriver(); } private void createDriver() { driver(new JComponentDriver(robot)); }