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.tck.junit4.rule.DynamicPort;
10  import org.mule.transport.tcp.issues.AbstractStreamingDownloadMule1389TestCase;
11  
12  import org.junit.Rule;
13  
14  /**
15   * This fails to work as described in the issue.  We need more info.
16   */
17  public class StreamingDownloadMule1389TestCase extends AbstractStreamingDownloadMule1389TestCase
18  {
19  
20      @Rule
21      public DynamicPort dynamicPort = new DynamicPort("port1");
22  
23      @Override
24      protected String getConfigResources()
25      {
26          return "streaming-download-mule-1389.xml";
27      }
28  
29  }