// do operation
ExecutionUtils.run(frame, new RunnableEx() {
public void run() throws Exception {
WidgetInfo buttonA = panel.getChildrenWidgets().get(0);
assertEquals("0 0 1 1", HTMLTableInfo.getConstraints(buttonA).toString());
panel.command_CELLS(buttonA, new Rectangle(0, 0, 2, 1));
assertEquals("0 0 2 1", HTMLTableInfo.getConstraints(buttonA).toString());
}
});
assertEditor(
"public class Test implements EntryPoint {",