assertAppsDir(NONE, new String[] {"dummy-app"}, true);
// just assert no privileged entries were put in the registry
final Application app = findApp("dummy-app", 1);
final MuleRegistry registry = app.getMuleContext().getRegistry();
final Object obj = registry.lookupObject(PriviledgedMuleApplication.REGISTRY_KEY_DEPLOYMENT_SERVICE);
assertNull(obj);
assertFalse(((ApplicationWrapper) app).getDelegate() instanceof PriviledgedMuleApplication);
// mule-app.properties from the zip archive must have loaded properly
assertEquals("mule-app.properties should have been loaded.", "someValue", registry.get("myCustomProp"));