package org.eclipse.concierge.stresstest; import org.osgi.framework.BundleActivator; import org.osgi.framework.BundleContext; public class Activator implements BundleActivator { /* * (non-Javadoc) * * @see * org.osgi.framework.BundleActivator#start(org.osgi.framework.BundleContext * ) */ public void start(final BundleContext context) throws Exception { System.out.println("Timestamp"); new ServiceRegistryStressTest().run(context); System.out.println("Timestamp"); new ResolverStressTest().run(context); } /* * (non-Javadoc) * * @see * org.osgi.framework.BundleActivator#stop(org.osgi.framework.BundleContext) */ public void stop(BundleContext bundleContext) throws Exception { } }