use of com.google.refine.expr.HasFieldsListImpl in project OpenRefine by OpenRefine.
the class CrossTests method crossFunctionOneArgumentTest1.
@Test
public void crossFunctionOneArgumentTest1() throws Exception {
Row row = (((WrappedRow) ((HasFieldsListImpl) invoke("cross", 0, "")).get(0)).row);
String address = row.getCell(1).value.toString();
Assert.assertEquals(address, "mary");
}
use of com.google.refine.expr.HasFieldsListImpl in project OpenRefine by OpenRefine.
the class CrossTests method crossFunctionDoubleArgumentTest1.
@Test
public void crossFunctionDoubleArgumentTest1() throws Exception {
Row row = (((WrappedRow) ((HasFieldsListImpl) invoke("cross", 3.14f, "My Address Book", "friend")).get(0)).row);
String address = row.getCell(1).value.toString();
Assert.assertEquals(address, "double");
}
use of com.google.refine.expr.HasFieldsListImpl in project OpenRefine by OpenRefine.
the class CrossTests method crossFunctionSameColumnTest.
@Test
public void crossFunctionSameColumnTest() throws Exception {
Project project = (Project) bindings.get("project");
Cell c = project.rows.get(0).cells.get(1);
WrappedCell lookup = new WrappedCell(project, "recipient", c);
Row row = (((WrappedRow) ((HasFieldsListImpl) invoke("cross", lookup, "My Address Book", "friend")).get(0)).row);
String address = row.getCell(1).value.toString();
Assert.assertEquals(address, "50 Broadway Ave.");
}
use of com.google.refine.expr.HasFieldsListImpl in project OpenRefine by OpenRefine.
the class CrossTests method crossFunctionDoubleArgumentTest2.
@Test
public void crossFunctionDoubleArgumentTest2() throws Exception {
Row row = (((WrappedRow) ((HasFieldsListImpl) invoke("cross", "3.14", "My Address Book", "friend")).get(0)).row);
String address = row.getCell(1).value.toString();
Assert.assertEquals(address, "double");
}
use of com.google.refine.expr.HasFieldsListImpl in project OpenRefine by OpenRefine.
the class CrossTests method crossFunctionBooleanArgumentTest.
@Test
public void crossFunctionBooleanArgumentTest() throws Exception {
Row row = (((WrappedRow) ((HasFieldsListImpl) invoke("cross", true, "My Address Book", "friend")).get(0)).row);
String address = row.getCell(1).value.toString();
Assert.assertEquals(address, "boolean");
}
Aggregations