View Javadoc
1   /*
2    * Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
3    * The software in this package is published under the terms of the CPAL v1.0
4    * license, a copy of which has been included with this distribution in the
5    * LICENSE.txt file.
6    */
7   package org.mule.transport.http.issues;
8   
9   import org.mule.transport.http.AbstractNamespaceHandlerTestCase;
10  import org.mule.transport.http.HttpConnector;
11  
12  import org.junit.Test;
13  
14  public class TypedPlaceholderMule1887TestCase extends AbstractNamespaceHandlerTestCase
15  {
16  
17      public TypedPlaceholderMule1887TestCase()
18      {
19          super("http");
20      }
21  
22      @Override
23      protected String getConfigResources()
24      {
25          return "typed-placeholder-mule-1887-test.xml";
26      }
27  
28      @Test
29      public void testConnectorProperties()
30      {
31          HttpConnector connector =
32                  (HttpConnector) muleContext.getRegistry().lookupConnector("httpConnector");
33          testBasicProperties(connector);
34      }
35  
36  }