Skip to content

Commit 6ad8186

Browse files
committed
URLOutputStreamTest - imports order fixed; asterisk imports removed
1 parent cfc8e03 commit 6ad8186

File tree

1 file changed

+22
-5
lines changed

1 file changed

+22
-5
lines changed

core/src/test/java/cucumber/runtime/io/URLOutputStreamTest.java

+22-5
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,21 @@
77
import org.junit.Rule;
88
import org.junit.Test;
99
import org.junit.rules.TemporaryFolder;
10-
import org.webbitserver.*;
10+
import org.webbitserver.HttpControl;
11+
import org.webbitserver.HttpHandler;
12+
import org.webbitserver.HttpRequest;
13+
import org.webbitserver.HttpResponse;
14+
import org.webbitserver.WebServer;
1115
import org.webbitserver.netty.NettyWebServer;
1216
import org.webbitserver.rest.Rest;
1317

14-
import java.io.*;
18+
import java.io.File;
19+
import java.io.FileInputStream;
20+
import java.io.FileNotFoundException;
21+
import java.io.IOException;
22+
import java.io.InputStreamReader;
23+
import java.io.Reader;
24+
import java.io.Writer;
1525
import java.net.InetSocketAddress;
1626
import java.net.URI;
1727
import java.net.URISyntaxException;
@@ -21,9 +31,16 @@
2131
import java.nio.file.Path;
2232
import java.util.ArrayList;
2333
import java.util.List;
24-
import java.util.concurrent.*;
25-
26-
import static org.junit.Assert.*;
34+
import java.util.concurrent.BlockingQueue;
35+
import java.util.concurrent.LinkedBlockingDeque;
36+
import java.util.concurrent.CountDownLatch;
37+
import java.util.concurrent.ExecutionException;
38+
import java.util.concurrent.Executors;
39+
import java.util.concurrent.TimeUnit;
40+
41+
import static org.junit.Assert.assertEquals;
42+
import static org.junit.Assert.assertTrue;
43+
import static org.junit.Assert.fail;
2744

2845
public class URLOutputStreamTest {
2946
private WebServer webbit;

0 commit comments

Comments
 (0)