1
2
3
4
5
6
7
8
9
10
11 package org.mule.transport.http;
12
13 import org.mule.transport.http.HttpConnector;
14
15 public class HttpPlaceholderTestCase extends AbstractNamespaceHandlerTestCase
16 {
17
18 public HttpPlaceholderTestCase()
19 {
20 super("http");
21 }
22
23 protected String getConfigResources()
24 {
25 return "http-placeholder-test.xml";
26 }
27
28 public void testConnectorProperties()
29 {
30 HttpConnector connector =
31 (HttpConnector) muleContext.getRegistry().lookupConnector("httpConnector");
32 testBasicProperties(connector);
33 }
34
35 }