}
@Test
public void limitZeroLength() throws IOException {
RecordIterator incoming = TestUtils.jsonToRecordIterator("test", input);
LimitROP limitROP = buildROP(new Limit(1, 1));
limitROP.setInput(incoming);
int nRecords = TestUtils.getIteratorCount(limitROP.getOutput());
assertEquals(0, nRecords);
}