@Test
public void testCOUNT_STAR() throws Exception {
Integer input[] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, null };
long expected = input.length;
EvalFunc<Long> count = new COUNT_STAR();
Tuple tup = Util.loadNestTuple(TupleFactory.getInstance().newTuple(1), input);
Long output = count.exec(tup);
assertTrue(output == expected);
}