162163164165166167168169170171172
Bundle createBundle( final String symbolicName, final Version version, final String location ) { BundleContext ctx = new MockBundleContext(); return new MockBundle( ctx, location ) { public String getSymbolicName() { return symbolicName; }
170171172173174175176
private static class DMTestMockBundleContext extends MockBundleContext { public Bundle[] getBundles() { return new Bundle[] { new MockBundle( this, LOCATION1 ) }; }