List<ColumnInfo> columns = table.getColumns();
assertThat(columns).hasSize(3);
// check bounds for each Column
int height = table.getHeaderHeight();
{
ColumnInfo column_1 = columns.get(0);
assertThat(column_1.getModelBounds()).isEqualTo(new Rectangle(0, 0, MCW, height));
}
{
ColumnInfo column_2 = columns.get(1);
assertThat(column_2.getModelBounds()).isEqualTo(new Rectangle(MCW, 0, MCW, height));
}
{
ColumnInfo column_3 = columns.get(2);
int width = Expectations.get(210, new IntValue[]{new IntValue("flanker-desktop", 210)});
assertThat(column_3.getModelBounds()).isEqualTo(new Rectangle(2 * MCW, 0, width, height));
}
}