private void testInitTraversalContext(boolean gsaSupportsInheritedAcls,
Boolean feedDisableInheritedAcls, boolean expectedSupportsInheritedAcls,
boolean expectedSupportsDenyAcls) {
SimpleTraversalContext simpleContext = new SimpleTraversalContext();
GsaFeedConnection feeder = createMock(GsaFeedConnection.class);
expect(feeder.supportsInheritedAcls())
.andReturn(gsaSupportsInheritedAcls)
.anyTimes();
replay(feeder);
Properties props = new Properties();
if (feedDisableInheritedAcls != null) {