for (int j = 0; j < col.length; j++)
assertTrue((col[i].compareTo(col[j]) == 0) == col[i].equals(col[j]));
}
public Column[] createColumns() {
Column col[] = new Column[4];
col[0] = new Column("colfam".getBytes(), "colq".getBytes(), "colv".getBytes());
col[1] = new Column("colfam".getBytes(), "colq".getBytes(), "colv".getBytes());
col[2] = new Column(new byte[0], new byte[0], new byte[0]);
col[3] = new Column(null, null, null);
return col;
}