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.tcp;
8   
9   import org.mule.tck.junit4.FunctionalTestCase;
10  import org.mule.tck.junit4.rule.DynamicPort;
11  
12  import org.junit.Rule;
13  import org.junit.Test;
14  
15  public class MultipleNamedTcpConnectorsTestCase extends FunctionalTestCase
16  {
17  
18      @Rule
19      public DynamicPort dynamicPort = new DynamicPort("port1");
20  
21      @Override
22      protected String getConfigResources()
23      {
24          return "multiple-named-tcp-connectors-test.xml";
25      }
26  
27      @Test
28      public void testMultipleNamedConnectors() throws Exception
29      {
30          // no-op, the initialization must not fail.
31      }
32  
33  }
34