* and on the last call succeed (return true).
*/
protected Action failTheFirst(int times) {
Action[] actions = new Action[times + 1];
for (int i = 0; i < times; ++i)
actions[i] = new ReturnValueAction(false);
actions[times] = new ReturnValueAction(true);
return new ActionSequence(actions);
}