Merge branch 'jetty-9.3.x' into jetty-9.4.x
This commit is contained in:
commit
9a8ed0340c
|
@ -18,6 +18,8 @@
|
|||
|
||||
package org.eclipse.jetty.websocket.jsr356;
|
||||
|
||||
import static org.hamcrest.Matchers.instanceOf;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.net.URI;
|
||||
import java.nio.ByteBuffer;
|
||||
|
@ -43,10 +45,9 @@ import org.junit.AfterClass;
|
|||
import org.junit.Assert;
|
||||
import org.junit.Before;
|
||||
import org.junit.BeforeClass;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
|
||||
import static org.hamcrest.Matchers.instanceOf;
|
||||
|
||||
/**
|
||||
* This class tests receiving of messages by different types of {@link MessageHandler}
|
||||
*/
|
||||
|
@ -109,6 +110,7 @@ public class MessageReceivingTest {
|
|||
* @throws Exception on exception occur
|
||||
*/
|
||||
@Test
|
||||
@Ignore("flappy test")
|
||||
public void testWholeTextMessage() throws Exception {
|
||||
final TestEndpoint echoer = new TestEndpoint(new WholeStringCaptureHandler());
|
||||
Assert.assertThat(echoer, instanceOf(javax.websocket.Endpoint.class));
|
||||
|
|
Loading…
Reference in New Issue