use of org.apache.aries.application.management.spi.framework.BundleFrameworkConfigurationFactory in project aries by apache.
the class BundleFrameworkManagerTest method setup.
@Before
public void setup() {
sut = new BundleFrameworkManagerImpl();
BundleFrameworkConfigurationFactory bfcf = Skeleton.newMock(BundleFrameworkConfigurationFactory.class);
sut.setBundleFrameworkConfigurationFactory(bfcf);
BundleFrameworkFactory bff = Skeleton.newMock(BundleFrameworkFactory.class);
sut.setBundleFrameworkFactory(bff);
frameworkFactory = Skeleton.getSkeleton(bff);
sut.init();
}
Aggregations