Wrapper for JTable components.
The contents of the underlying table can be usually checked with String or Boolean values, as in the following example:
assertTrue(table.contentEquals(new String[]{ {"Bart", "Simpson"}, {"Marge", "Simpson"} }));
The conversion between the values (Strings) given in the test and the values actually displayed by the table renderer is performed by a dedicated {@link TableCellValueConverter}, which retrieves the graphical component that draws the table cells and determines the displayed value accordingly. A {@link DefaultTableCellValueConverter} is used by default by the Table component.