public class ColumnWithNameClientTest extends ClientTestCase {
/** Test constructor and getName() method. */
@SuppressWarnings("rawtypes")
public void testConstructor() {
Cell cell = new TextCell();
ColumnWithName column = new TestColumn(cell);
assertNotNull(column);
assertEquals(null, column.getName());
assertSame(cell, column.getCell());