* @see #getContentAt(int,int,TableCellValueConverter)
*/
public Assertion cellEquals(final int row, final int column,
final Object expectedValue,
final TableCellValueConverter converter) {
return new Assertion() {
public void check() {
AssertAdapter.assertEquals("Error at (" + row + "," + column + ") -",
expectedValue, getContentAt(row, column, converter));
}
};