()
| 1374 | } |
| 1375 | |
| 1376 | @Test |
| 1377 | public void testCOUNT_STAR() throws Exception { |
| 1378 | Integer input[] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, null }; |
| 1379 | long expected = input.length; |
| 1380 | |
| 1381 | EvalFunc<Long> count = new COUNT_STAR(); |
| 1382 | Tuple tup = Util.loadNestTuple(TupleFactory.getInstance().newTuple(1), input); |
| 1383 | Long output = count.exec(tup); |
| 1384 | |
| 1385 | assertTrue(output == expected); |
| 1386 | } |
| 1387 | |
| 1388 | @Test |
| 1389 | public void testCOUNT_STARIntermed() throws Exception { |
nothing calls this directly
no test coverage detected