use of com.google.refine.expr.WrappedRow in project OpenRefine by OpenRefine.
the class CrossTests method crossFunctionIntegerArgumentTest1.
@Test
public void crossFunctionIntegerArgumentTest1() throws Exception {
Row row = (((WrappedRow) ((HasFieldsListImpl) invoke("cross", 1600L, "My Address Book", "friend")).get(0)).row);
String address = row.getCell(1).value.toString();
Assert.assertEquals(address, "integer");
}
Aggregations