View Javadoc

1   /*
2    * $Id: TypedPlaceholderMule1887TestCase.java 22431 2011-07-18 07:40:35Z dirk.olmes $
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.http.issues;
12  
13  import org.mule.transport.http.AbstractNamespaceHandlerTestCase;
14  import org.mule.transport.http.HttpConnector;
15  
16  import org.junit.Test;
17  
18  public class TypedPlaceholderMule1887TestCase extends AbstractNamespaceHandlerTestCase
19  {
20  
21      public TypedPlaceholderMule1887TestCase()
22      {
23          super("http");
24      }
25  
26      @Override
27      protected String getConfigResources()
28      {
29          return "typed-placeholder-mule-1887-test.xml";
30      }
31  
32      @Test
33      public void testConnectorProperties()
34      {
35          HttpConnector connector =
36                  (HttpConnector) muleContext.getRegistry().lookupConnector("httpConnector");
37          testBasicProperties(connector);
38      }
39  
40  }