use of org.apache.aries.application.modelling.ModellingManager in project aries by apache.
the class DeploymentGeneratorTest method classSetup.
@BeforeClass
public static void classSetup() throws Exception {
BundleContext bc = Skeleton.newMock(BundleContext.class);
bc.registerService(AriesApplicationResolver.class.getName(), _resolver, new Hashtable<String, String>());
bc.registerService(ModellingManager.class.getName(), modellingManager, new Hashtable<String, String>());
bc.registerService(ModellingHelper.class.getName(), modellingHelper, new Hashtable<String, String>());
}
Aggregations