EvalFunc<DataAtom> count = new COUNT.Final();
DataAtom output = new DataAtom();
count.exec(tup, output);
assertEquals("Expected count to be 100", 100, output.longVal());
}
@Test
public void testSUM() throws Exception {
int input[] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };