Deque<Expression> children = new LinkedList<Expression>();
children.add(second);
children.add(first);
or.addChildren(children);
assertEquals(Result.PASS, or.apply(pathData));
verify(first).apply(pathData);
verify(second).apply(pathData);
verifyNoMoreInteractions(first);
verifyNoMoreInteractions(second);
}