Setting SSL tests to @Ignore (till we implement the SSL bits again)

This commit is contained in:
Joakim Erdfelt 2012-07-03 11:56:27 -07:00
parent 8690348670
commit 4549afbcf0
1 changed files with 3 additions and 0 deletions

View File

@ -30,6 +30,7 @@ import org.eclipse.jetty.websocket.api.WebSocketConnection;
import org.eclipse.jetty.websocket.server.examples.MyEchoSocket; import org.eclipse.jetty.websocket.server.examples.MyEchoSocket;
import org.junit.After; import org.junit.After;
import org.junit.Assert; import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test; import org.junit.Test;
public class WebSocketOverSSLTest public class WebSocketOverSSLTest
@ -97,6 +98,7 @@ public class WebSocketOverSSLTest
} }
@Test @Test
@Ignore("SSL Not yet implemented")
public void testManyMessages() throws Exception public void testManyMessages() throws Exception
{ {
startServer(MyEchoSocket.class); startServer(MyEchoSocket.class);
@ -127,6 +129,7 @@ public class WebSocketOverSSLTest
} }
@Test @Test
@Ignore("SSL Not yet implemented")
public void testWebSocketOverSSL() throws Exception public void testWebSocketOverSSL() throws Exception
{ {
final String message = "message"; final String message = "message";