cleanup
This commit is contained in:
parent
a51049921a
commit
c0c8d8690e
|
@ -1,33 +0,0 @@
|
||||||
package com.baeldung.java.networking.udp;
|
|
||||||
|
|
||||||
import static org.junit.Assert.*;
|
|
||||||
|
|
||||||
import java.io.IOException;
|
|
||||||
|
|
||||||
import org.junit.After;
|
|
||||||
import org.junit.Before;
|
|
||||||
import org.junit.Test;
|
|
||||||
|
|
||||||
public class UDPTest {
|
|
||||||
EchoClient client = null;
|
|
||||||
|
|
||||||
@Before
|
|
||||||
public void setup() throws IOException {
|
|
||||||
new EchoServer().start();
|
|
||||||
client = new EchoClient();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void whenCanSendAndReceivePacket_thenCorrect1() {
|
|
||||||
String echo = client.sendEcho("hello server");
|
|
||||||
assertEquals("hello server", echo);
|
|
||||||
echo = client.sendEcho("server is working");
|
|
||||||
assertFalse(echo.equals("hello server"));
|
|
||||||
}
|
|
||||||
|
|
||||||
@After
|
|
||||||
public void tearDown() {
|
|
||||||
client.sendEcho("end");
|
|
||||||
client.close();
|
|
||||||
}
|
|
||||||
}
|
|
2
pom.xml
2
pom.xml
|
@ -21,7 +21,7 @@
|
||||||
<module>autovalue</module>
|
<module>autovalue</module>
|
||||||
|
|
||||||
<module>cdi</module>
|
<module>cdi</module>
|
||||||
<module>core-java-9</module>
|
<!-- <module>core-java-9</module> -->
|
||||||
<module>core-java</module>
|
<module>core-java</module>
|
||||||
<module>couchbase-sdk</module>
|
<module>couchbase-sdk</module>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue