@Test
@Ignore("It will be implemented in SCA 2.x codebase")
public void testValueAttibuteValid_2() {
initDomain("component_property_1.composite");
ServiceB service = ServiceFinder.getService(ServiceB.class , "BComponent/ServiceB") ;
// Assert.assertEquals("I am a object" ,service.getObjProperty()) ;
//It will fail to get the value from composite file, so it will be an empty string
System.out.println("::::" + service.getStrProperty());
// System.out.println("::::" + service.getIntProperty());
// Assert.assertEquals("I am a string" ,service.getStrProperty()) ;
Assert.assertEquals("" ,service.getObjProperty()) ;
cleanupDomain();
}