View Javadoc

1   /*
2    * $Id: AxisConnectorVMFunctionalTestCase.java 22450 2011-07-19 08:20:41Z dirk.olmes $
3    * --------------------------------------------------------------------------------------
4    * Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
5    *
6    * The software in this package is published under the terms of the CPAL v1.0
7    * license, a copy of which has been included with this distribution in the
8    * LICENSE.txt file.
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  }