componentManager.stopComponent("TestServiceComponent");
assertTrue(cl.stopCalled);
assertFalse(componentManager.isComponentStarted("TestServiceComponent"));
assertFalse(cl.startCalled);
componentManager.startComponent("TestServiceComponent");
assertTrue(cl.startCalled);
assertTrue(componentManager.isComponentStarted("TestServiceComponent"));
// Stop my composite
domain.getCompositeActivator().stop(myComposite);