TestCase.assertEquals( Component.STATE_UNSATISFIED, component.getState() );
TestCase.assertNull(bundleContext.getServiceReference( ActivatorComponent.class ));
ss = SimpleServiceImpl.create( bundleContext, "foo" );
ref = bundleContext.getServiceReference( ActivatorComponent.class );
ActivatorComponent ac = bundleContext.getService( ref );
TestCase.assertNotNull( ac.getSimpleService() );
TestCase.assertEquals( Component.STATE_ACTIVE, component.getState() );
component.disable();