()
| 1409 | } |
| 1410 | |
| 1411 | @Test |
| 1412 | public void testCOUNT_STARFinal() throws Exception { |
| 1413 | long input[] = { 23, 38, 39 }; |
| 1414 | Tuple tup = Util.loadNestTuple(TupleFactory.getInstance().newTuple(1), input); |
| 1415 | |
| 1416 | EvalFunc<Long> count = new COUNT_STAR.Final(); |
| 1417 | Long output = count.exec(tup); |
| 1418 | |
| 1419 | assertEquals("Expected count to be 100", 100, output.longValue()); |
| 1420 | } |
| 1421 | |
| 1422 | @Test |
| 1423 | public void testSUM() throws Exception { |
nothing calls this directly
no test coverage detected