Package org.apache.tuscany.sca.vtest.assembly.component.property

Examples of org.apache.tuscany.sca.vtest.assembly.component.property.ServiceB


    @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();
     
    }
View Full Code Here

TOP

Related Classes of org.apache.tuscany.sca.vtest.assembly.component.property.ServiceB

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.