Deque<Expression> children = new LinkedList<Expression>();
children.add(child);
not.addChildren(children);
assertEquals(Result.PASS, not.apply(pathData));
verify(child).apply(pathData);
verifyNoMoreInteractions(child);
}
@Test
public void testInit() throws IOException {