()
| 56 | } |
| 57 | |
| 58 | @Test |
| 59 | public void testGetNext() throws ExecException, IOException { |
| 60 | t = tRandom; |
| 61 | proj.attachInput(t); |
| 62 | for (int j = 0; j < t.size(); j++) { |
| 63 | proj.attachInput(t); |
| 64 | proj.setColumn(j); |
| 65 | |
| 66 | res = proj.getNext(); |
| 67 | assertEquals(POStatus.STATUS_OK, res.returnStatus); |
| 68 | assertEquals(t.get(j), res.result); |
| 69 | } |
| 70 | } |
| 71 | |
| 72 | @Test |
| 73 | public void testGetNextTuple() throws IOException, ExecException { |
nothing calls this directly
no test coverage detected