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.issues;
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 MultiConnectorMULE3669TestCase extends FunctionalTestCase
16  {
17  
18      @Rule
19      public DynamicPort dynamicPort1 = new DynamicPort("port1");
20  
21      @Rule
22      public DynamicPort dynamicPort2 = new DynamicPort("port2");
23  
24      @Override
25      protected String getConfigResources()
26      {
27          return "multiconnector-mule3669-test.xml";
28      }
29  
30      @Test
31      public void testInitialisation() throws Exception
32      {
33          //Just need to ensure the test sets up correctly
34      }
35  
36  }