TestUtil.checkError(table.getCellElementAt(2,0) == cellElem2);
TestUtil.checkError(table.getRowCount() == 3);
Element colElem = table.getCellElementAt(0,0);
table.moveColumn(0,2);
TestUtil.checkError(table.getCellElementAt(0,2) == colElem);
table.moveColumn(2,0); // La dejamos en su sitio de nuevo
TestUtil.checkError(table.getCellElementAt(0,0) == colElem);
TestUtil.checkError(table.getColumnCount() == 3);