@Test
public void testGetProperties_Filter() {
Map<String,String> props = new java.util.HashMap<String,String>();
AccumuloConfiguration parent = createMock(AccumuloConfiguration.class);
PropertyFilter filter = createMock(PropertyFilter.class);
parent.getProperties(props, filter);
replay(parent);
String child1 = "child1";
List<String> children = new java.util.ArrayList<String>();
children.add(child1);
expect(zc.getChildren(PATH)).andReturn(children);
replay(zc);
expect(filter.accept(child1)).andReturn(false);
replay(filter);
a.getProperties(props, PATH, filter, parent, null);
assertEquals(0, props.size());
}