Examples of sendGuessAndName()


Examples of org.apache.tuscany.sca.binding.sca.jaxb.iface.GuessAndGreetDisableWrapped.sendGuessAndName()

        parameters.setGuess(1);
        parameters.setName("Petra");
        parameters.setPerson(null);
       
        SendGuessAndNameResponse response = service.sendGuessAndName(parameters);
       
        assertEquals("Petra", response.getPerson().getFirstName());
        assertEquals("Winnder!", response.getPerson().getGreeting());
        assertEquals(null, response.getPerson().getChild());
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.