use of org.eclipse.scout.jaxws.consumer.jaxwsconsumertestservice.EchoRequest in project scout.rt by eclipse.
the class AbstractJaxWsClientTest method assertSendEcho.
protected void assertSendEcho(JaxWsConsumerTestServicePortType port, int i) {
final String messageSent = "Test Message " + i;
EchoRequest req = new EchoRequest();
req.setMessage(messageSent);
EchoResponse response = port.echo(req);
assertNotNull(response);
assertEquals(messageSent, response.getMessage());
}
Aggregations