Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'jetty-websocket/websocket-server/src/test/java/org/eclipse/jetty/websocket/server/WebSocketServletRFCTest.java')
-rw-r--r--jetty-websocket/websocket-server/src/test/java/org/eclipse/jetty/websocket/server/WebSocketServletRFCTest.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/jetty-websocket/websocket-server/src/test/java/org/eclipse/jetty/websocket/server/WebSocketServletRFCTest.java b/jetty-websocket/websocket-server/src/test/java/org/eclipse/jetty/websocket/server/WebSocketServletRFCTest.java
index eb1b96fb35..845c03e56e 100644
--- a/jetty-websocket/websocket-server/src/test/java/org/eclipse/jetty/websocket/server/WebSocketServletRFCTest.java
+++ b/jetty-websocket/websocket-server/src/test/java/org/eclipse/jetty/websocket/server/WebSocketServletRFCTest.java
@@ -82,6 +82,7 @@ public class WebSocketServletRFCTest
/**
* Test that aggregation of binary frames into a single message occurs
+ * @throws Exception on test failure
*/
@Test
public void testBinaryAggregate() throws Exception
@@ -167,6 +168,7 @@ public class WebSocketServletRFCTest
/**
* Test the requirement of issuing socket and receiving echo response
+ * @throws Exception on test failure
*/
@Test
public void testEcho() throws Exception
@@ -196,6 +198,7 @@ public class WebSocketServletRFCTest
/**
* Test the requirement of responding with server terminated close code 1011 when there is an unhandled (internal server error) being produced by the
* WebSocket POJO.
+ * @throws Exception on test failure
*/
@Test
public void testInternalError() throws Exception
@@ -234,6 +237,7 @@ public class WebSocketServletRFCTest
* Test http://tools.ietf.org/html/rfc6455#section-4.1 where server side upgrade handling is supposed to be case insensitive.
* <p>
* This test will simulate a client requesting upgrade with all lowercase headers.
+ * @throws Exception on test failure
*/
@Test
public void testLowercaseUpgrade() throws Exception
@@ -313,6 +317,7 @@ public class WebSocketServletRFCTest
* Test http://tools.ietf.org/html/rfc6455#section-4.1 where server side upgrade handling is supposed to be case insensitive.
* <p>
* This test will simulate a client requesting upgrade with all uppercase headers.
+ * @throws Exception on test failure
*/
@Test
public void testUppercaseUpgrade() throws Exception

Back to the top