1
2
3
4
5
6
7
8
9
10
11 package org.mule.providers.soap.xfire;
12
13 import org.mule.tck.providers.AbstractConnectorTestCase;
14 import org.mule.umo.provider.UMOConnector;
15
16 public class XFireConnectorTestCase extends AbstractConnectorTestCase
17 {
18 public String getTestEndpointURI()
19 {
20 return "xfire:http://localhost:38009/xfire";
21 }
22
23 public UMOConnector getConnector() throws Exception
24 {
25 XFireConnector c = new XFireConnector();
26 c.initialise();
27 return c;
28 }
29
30 public Object getValidMessage() throws Exception
31 {
32 return "Test Message";
33 }
34 }