assertEquals("Williams", cust1.getLastName());
}
public void testSimpleReadCustomersWithShape() throws Exception {
SimpleReadCustomersWithShapeCommand cmd = new SimpleReadCustomersWithShapeCommand();
cmd.setConnection(getConnection());
DataObject root = cmd.executeQuery();
assertEquals(5, root.getList("CUSTOMER").size());
}