}
@Test
public void testAssertColumnCount() {
JTable table = new JTable(1, 3);
MComponent component = new MTable(table, "table", null, WindowMonitor.getInstance());
ComponentFinder resolver = new DummyResolver(component);
ActionTestCase.assertPasses(
new AssertColumnCount(ID, 3, ScriptModelServerPart.getModelServerPart(), WindowMonitor.getInstance()), resolver);
ActionTestCase.assertFails(
new AssertColumnCount(ID, 4, ScriptModelServerPart.getModelServerPart(), WindowMonitor.getInstance()), resolver);