*/
@Test
public void test_A11_B01_immediate_B_first() throws InvalidSyntaxException
{
String componentNameA = "6.A.1.1.dynamic";
final ComponentConfigurationDTO componentA = findComponentConfigurationByName( componentNameA, ComponentConfigurationDTO.ACTIVE );
A a = getServiceFromConfiguration(componentA, A.class);
assertEquals( 1, a.getBs().size());
String componentNameB = "6.B.0.1.dynamic";
final ComponentConfigurationDTO componentB = findComponentConfigurationByName( componentNameB, ComponentConfigurationDTO.ACTIVE );
B b = getServiceFromConfiguration(componentB, B.class);
assertEquals( 1, b.getAs().size() );
}