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

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


     */
    @Test
    public void testPropertyNameMatched() {
     
      initDomain("component_property_3.composite");
      ServiceC service = ServiceFinder.getService(ServiceC.class , "CComponent/ServiceC") ;     
      Assert.assertEquals("I am a string" , service.getStrProperty()) ;
      cleanupDomain();
     
    }
View Full Code Here


     */
    @Test
    public void testPropertyNameNotMatched() {
     
      initDomain("component_property_3.composite");
      ServiceC service = ServiceFinder.getService(ServiceC.class , "CComponent/ServiceC") ;     
      Assert.assertNull(service.getObjProperty()) ;
      cleanupDomain();
     
    }
View Full Code Here

TOP

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

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.