Package org.apache.tuscany.sca.node

Examples of org.apache.tuscany.sca.node.SCAClient


    }

   
    @Test
    public void testShop() {
        SCAClient client = (SCAClient)storeClientNode;
        Shopper shopper = client.getService(Shopper.class, "StoreClient");
       
        String total = shopper.shop("Orange", 5);
        System.out.println("Total: " + total);
       
        Assert.assertEquals("$17.75", total);
View Full Code Here


    }

   
    @Test
    public void testShop() {
        SCAClient client = (SCAClient)storeClientNode;
        Shopper shopper = client.getService(Shopper.class, "StoreClient");
       
        String total = shopper.shop("Orange", 5);
        System.out.println("Total: " + total);
       
        Assert.assertEquals("$17.75", total);
View Full Code Here

TOP

Related Classes of org.apache.tuscany.sca.node.SCAClient

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.