}
// check that the prune command is ignore when doing a depth first find
@Test
public void applyDepth() throws IOException {
Prune prune = new Prune();
FindOptions options = new FindOptions();
options.setDepth(true);
prune.initialise(options);
PathData item = mock(PathData.class);
assertEquals(Result.PASS, prune.apply(item));
}