@Test
public void testIterationWithIndexManipulation() {
Iterate iterate = new Iterate();
List<TestAction> actions = new ArrayList<TestAction>();
TestAction incrementTestAction = new AbstractTestAction() {
@Override
public void doExecute(TestContext context) {
Long end = Long.valueOf(context.getVariable("end"));
context.setVariable("end", String.valueOf(end - 25));
}