Ignore tests

This commit is contained in:
Alex Theedom 2016-08-24 07:32:51 +01:00
parent 683f1768b7
commit 50a754105b
1 changed files with 2 additions and 1 deletions

View File

@ -2,6 +2,7 @@ package com.baeldung.socket;
import org.junit.After;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
@ -15,7 +16,7 @@ public class EchoTest {
client.startConnection("127.0.0.1", 4444);
}
@Test
@Test @Ignore
public void givenClient_whenServerEchosMessage_thenCorrect() {
String resp1 = client.sendMessage("hello");