assertNull(reader.read());
}
@Test
public void testReadAfterOpen() throws Exception {
ExecutionContext executionContext = new ExecutionContext();
executionContext.putInt(reader.getExecutionContextKey("COUNT"), 1);
reader.open(executionContext);
assertNotNull(reader.read());
assertNull(reader.read());
}