()
| 157 | } |
| 158 | |
| 159 | @Test |
| 160 | public void testGetNextWithNull() throws ExecException, IOException { |
| 161 | t = tRandomAndNull; |
| 162 | proj.attachInput(t); |
| 163 | for (int j = 0; j < t.size(); j++) { |
| 164 | proj.attachInput(t); |
| 165 | proj.setColumn(j); |
| 166 | |
| 167 | res = proj.getNext(); |
| 168 | assertEquals(POStatus.STATUS_OK, res.returnStatus); |
| 169 | assertEquals(t.get(j), res.result); |
| 170 | } |
| 171 | } |
| 172 | |
| 173 | @Test |
| 174 | public void testGetNextTupleWithNull() throws IOException, ExecException { |
nothing calls this directly
no test coverage detected