@Test
@Server(wsdl = "classpath:wsdl/currency-convertor.wsdl", binding = "CurrencyConvertorSoap", port = 41414)
public void testSoapMock_perMethodServer() {
SoapClient client = SoapClient.builder().endpointUri("http://localhost:41414/service").build();
SoapBuilder builder = Wsdl.parse(WSDL).binding().localPart("CurrencyConvertorSoap").find();
SoapOperation operation = builder.operation().name("ConversionRate").find();
String request = builder.buildInputMessage(operation);
log.info("\n" + request);
String response = client.post(request);