assertTrue("With the new assignments, the SGO should need approval.", sgo.needsApprove());
// create a deploymentversion
sgo.approve();
// the preprocessor now has gotten its properties; inspect these
PropertyResolver target = preprocessor.getProps();
assertTrue("The property resolver should be able to resolve 'id'.", target.get("id").startsWith(targetId));
assertTrue("The property resolver should be able to resolve 'name'.", target.get("name").startsWith("mydistribution"));
assertNull("The property resolver should not be able to resolve 'someunknownproperty'.", target.get("someunknownproperty"));
cleanUp(); // we need to do this before the helper goes away
m_dependencyManager.remove(helperService);
}