()
| 1173 | } |
| 1174 | |
| 1175 | @Test |
| 1176 | public void testCOUNTBagNullCheck() throws Exception{ |
| 1177 | DataBag b = null; |
| 1178 | Tuple t = TupleFactory.getInstance().newTuple(b); |
| 1179 | |
| 1180 | EvalFunc<Long> count = new COUNT(); |
| 1181 | assertNull(count.exec(t)); |
| 1182 | } |
| 1183 | |
| 1184 | @Test |
| 1185 | public void testCount_ValidNumberOfArguments_WithoutInputSchema_One() throws Exception { |
nothing calls this directly
no test coverage detected