assertFalse(propertyChangeController.isChanged());
}
public void testGetSetUpdateUI() throws Exception {
assertTrue(table.getUI() instanceof BasicTableUI);
TableUI ui = new BasicTableUI();
table.setUI(ui);
assertSame(ui, table.getUI());
table.updateUI();
assertNotSame(ui, table.getUI());
}