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