public void initialise() throws IOException{
FindOptions options = new FindOptions();
Depth depth = new Depth();
assertFalse(options.isDepth());
depth.initialise(options);
assertTrue(options.isDepth());
}
@Test
public void apply() throws IOException{