@Test
public void testCopyTable() {
Table t2 = TableUtilities.copyTable(this.table);
for (IntIterator rows = t2.rows(); rows.hasNext();) {
int row = (Integer) rows.next();
for (int col = 0; col < t2.getColumnCount(); col++) {
assertTrue(t2.get(row, col) + " " + this.table.get(row, col)
+ " didn't match.",
t2.get(row, col).equals(this.table.get(row, col)));