View Javadoc

1   /*
2    * $Id: AxisConnectorVMFunctionalTestCase.java 20321 2010-11-24 15:21:24Z dfeist $
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.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          // don't really need the ports, but the other tests which extend the same abstract class do
39          return 1;
40      }
41  }