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