1
2
3
4
5
6
7
8
9
10
11 package org.mule.transport.soap.axis;
12
13 import org.mule.transport.vm.VMConnector;
14
15 public class AxisConnectorVMFunctionalTestCase extends AbstractSoapResourceEndpointFunctionalTestCase
16 {
17 @Override
18 protected String getTransportProtocol()
19 {
20 return VMConnector.VM;
21 }
22
23 @Override
24 protected String getSoapProvider()
25 {
26 return "axis";
27 }
28
29 @Override
30 public String getConfigResources()
31 {
32 return "axis-" + getTransportProtocol() + "-mule-config.xml";
33 }
34
35 @Override
36 protected int getNumPortsToFind()
37 {
38
39 return 1;
40 }
41 }