use of org.apache.aries.util.tracker.InternalRecursiveBundleTracker in project aries by apache.
the class RecursiveBundleTrackerTest method makeSUT.
@SuppressWarnings("rawtypes")
private void makeSUT() {
BundleTrackerCustomizer customizer = Skeleton.newMock(BundleTrackerCustomizer.class);
sut = new InternalRecursiveBundleTracker(context, Bundle.INSTALLED | Bundle.STARTING | Bundle.ACTIVE | Bundle.STOPPING, customizer, true);
sut.open();
}
Aggregations