Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ public void testAnnotatedClientEndpoint() throws Exception {
session.getBasicRemote().sendText("close");
Assert.assertEquals("CLOSE", endpoint.message());
Assert.assertEquals("OPEN", endpoint.message());
Assert.assertTrue(session.isOpen()); // Verify session is open before sending the next message
session.getBasicRemote().sendText("hi");
Assert.assertEquals("MESSAGE-ECHO-hi", endpoint.message());
session.getBasicRemote().sendText("close");
Expand Down
Loading