Class JTableCellFixture

java.lang.Object
org.fest.swing.fixture.JTableCellFixture
All Implemented Interfaces:
ItemFixture, MouseInputSimulationFixture

public class JTableCellFixture extends Object implements ItemFixture
Understands functional testing of single cells in JTables:
  • user input simulation
  • state verification
  • property value query

Example:

 // import static org.fest.swing.data.TableCell.row;
 JTableCellFixture cell = dialog.table("records").cell(row(3).column(0));
 cell.select().showPopupMenu();
 

See Also: