use of com.cinchapi.ccl.type.function.IndexFunction in project concourse by cinchapi.
the class ConvertTest method testConvertIndexFunctionToThriftRoundTrip.
@Test
public void testConvertIndexFunctionToThriftRoundTrip() {
IndexFunction expected = new IndexFunction("average", "age");
IndexFunction actual = (IndexFunction) Convert.thriftToJava(Convert.javaToThrift(expected));
Assert.assertEquals(expected, actual);
}
Aggregations