1
2
3
4
5
6
7 package org.mule.transport.sftp;
8
9 import org.mule.api.transport.Connector;
10 import org.mule.transport.AbstractConnectorTestCase;
11
12 import org.junit.Test;
13
14 public class SftpConnectorTestCase extends AbstractConnectorTestCase
15 {
16
17
18
19
20
21
22 public Connector createConnector() throws Exception
23 {
24
25
26
27
28
29 SftpConnector c = new SftpConnector(muleContext);
30 c.setName("Test");
31
32 return c;
33 }
34
35 public String getTestEndpointURI()
36 {
37 return "sftp://ms/data";
38 }
39
40 public Object getValidMessage() throws Exception
41 {
42 return "payload";
43 }
44
45 @Test
46 public void testProperties() throws Exception
47 {
48
49
50 }
51
52 @Override
53 public void testConnectorMessageRequesterFactory()
54 {
55
56 }
57
58 }