Move UDPTest

This commit is contained in:
Grzegorz Piwowarek 2016-10-25 17:11:25 +02:00
parent 89b50437be
commit c9f858ca32
1 changed files with 9 additions and 5 deletions

View File

@ -1,15 +1,19 @@
package com.baeldung.java.networking.udp; package com.baeldung.java.networking.url;
import static org.junit.Assert.*;
import java.io.IOException;
import com.baeldung.java.networking.udp.EchoClient;
import com.baeldung.java.networking.udp.EchoServer;
import org.junit.After; import org.junit.After;
import org.junit.Before; import org.junit.Before;
import org.junit.Test; import org.junit.Test;
import java.io.IOException;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
public class UDPTest { public class UDPTest {
EchoClient client = null; private EchoClient client;
@Before @Before
public void setup() throws IOException { public void setup() throws IOException {