@Test
@Ignore("It will be implemented in SCA 2.x codebase")
public void testValueAttibuteValid_1() {
initDomain("component_property_1.composite");
ServiceA service = ServiceFinder.getService(ServiceA.class , "AComponent/ServiceA") ;
Assert.assertEquals("I am a string" ,service.getStrProperty()) ;
Assert.assertEquals("I am a object" ,service.getObjProperty()) ;
cleanupDomain();
}