return hash;
}
@Given("a table that we convert:")
public void convertTable(Table t) {
t.mapColumn("b", new CellConverter() {
public String convertCell(String cellValue) {
return "converted_" + cellValue;
}
});
t.mapHeaders(new HashMap<Object, String>() {{