Add tests to spring-messaging

This commit is contained in:
Rossen Stoyanchev
2013-09-02 20:35:18 -04:00
parent d202573e1a
commit e1a46bb57a
13 changed files with 597 additions and 136 deletions

View File

@@ -108,6 +108,10 @@ public abstract class AbstractWebSocketIntegrationTests {
return "ws://localhost:" + this.server.getPort();
}
protected WebSocketSession doHandshake(WebSocketHandler clientHandler, String endpointPath) {
return this.webSocketClient.doHandshake(clientHandler, getWsBaseUrl() + endpointPath);
}
static abstract class AbstractRequestUpgradeStrategyConfig {