private List<String> runTestInheritMasterIntentMap(String requestedIntents) {
Map<String, Object> masterIntents = new HashMap<String, Object>();
masterIntents.put("A", new TestFeature("masterFeatureA"));
masterIntents.put("B", new TestFeature("masterFeatureB"));
final IntentMap masterIntentMap = new IntentMap();
masterIntentMap.setIntents(masterIntents);
Map<String, Object> appIntents = new HashMap<String, Object>();
appIntents.put("A", new TestFeature("appFeatureA"));
final IntentMap appIntentMap = new IntentMap();
appIntentMap.setIntents(appIntents);
IMocksControl control = EasyMock.createNiceControl();
final BundleContext dswContext = control.createMock(BundleContext.class);
final BundleContext callingContext = control.createMock(BundleContext.class);
List<AbstractFeature> features = new ArrayList<AbstractFeature>();