ServiceComponentRuntime scr = scrTracker.getService();
if ( scr == null )
{
TestCase.fail("no ServiceComponentRuntime");
}
ComponentDescriptionDTO cd = scr.getComponentDescriptionDTO(b, name);
Assert.assertTrue("Expected component enabled", scr.isComponentEnabled(cd));
Collection<ComponentConfigurationDTO> ccs = scr.getComponentConfigurationDTOs(cd);
Assert.assertEquals(count, ccs.size());
if (expectedState != -1)