()
| 126 | } |
| 127 | |
| 128 | @Test |
| 129 | public void testGetNextMap() throws ExecException { |
| 130 | Map<String, Object> inp = GenRandomData.genRandMap(r, 10); |
| 131 | ce.setValue(inp); |
| 132 | Result resm = ce.getNextMap(); |
| 133 | Map<Integer, String> ret = (Map)resm.result; |
| 134 | assertEquals(inp, ret); |
| 135 | |
| 136 | // test with null input |
| 137 | ce.setValue(null); |
| 138 | resm = ce.getNextMap(); |
| 139 | ret = (Map)resm.result; |
| 140 | assertNull(ret); |
| 141 | } |
| 142 | |
| 143 | @Test |
| 144 | public void testGetNextBoolean() throws ExecException { |
nothing calls this directly
no test coverage detected