* cell); }
*/
@Test public void testTableCellEditorsResolveToTheirParentTable() {
JTable table = _dialog.getTable();
table.editCellAt(1, 1);
TableCellEditor editor = table.getCellEditor(1, 1);
Component component = editor.getTableCellEditorComponent(table, "shizzow", true, 1, 1);
assertSame(table, component.getParent());
MComponent expected = new MTableCell(table, "table.name", "{1,col2}", null, WindowMonitor.getInstance());
assertEquals(expected, _finder.getMComponentByComponent(component, new Point(0, 0)));