Package org.apache.tuscany.sca.test.performance.client

Examples of org.apache.tuscany.sca.test.performance.client.BeanA


        try {
            Helloworld helloWorldClient = node.getService(Helloworld.class, "HelloWorldClientComponent");
           
            assertNotNull(helloWorldClient)
           
            BeanA beanA = new BeanA();
            beanA.setField1("Smith");
            beanA.setField2(13);
           
            assertEquals("Hello Hello Jane Smith", helloWorldClient.sayHello("Jane", beanA));
        } catch (Exception ex) {
            fail(ex.toString());
        }
View Full Code Here

TOP

Related Classes of org.apache.tuscany.sca.test.performance.client.BeanA

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.