}
@Test
public void testHieraclicalFeaturesChildFailed() {
FeatureDescriptor item = mock(FeatureDescriptor.class);
when(item.process(any(ContextManager.class))).thenThrow(new UnknownContextPropertyException());
when(propertyReader.getFeatureDescriptor(eq("test.item"))).thenReturn(item);
FeatureDescriptor parent = mock(FeatureDescriptor.class);
when(parent.process(any(ContextManager.class))).thenReturn(FeatureState.ENABLED);
when(propertyReader.getFeatureDescriptor(eq("test"))).thenReturn(parent);