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