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

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


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


    @Test
    @Ignore("TUSCANY-2863")
    public void testDuplicateProperty() {
     
      initDomain("component_duplicate_property.composite");
      ServiceA service = ServiceFinder.getService(ServiceA.class , "AComponent/ServiceA") ;     
//      System.out.println(service.getStrProperty()) ;
      Assert.assertEquals("value1", service.getStrProperty()) ;
      cleanupDomain();
     
    }
View Full Code Here

TOP

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

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.