public class WebSocketSslServerSslContextTest {
@Test
public void createSSLEngine() {
final SockJsConfig sockJsConfig = SockJsConfig.withPrefix("/echo")
.tls(true)
.keyStore("/simplepush-sample.keystore")
.keyStorePassword("simplepush")
.build();
final SSLEngine engine = new WebSocketSslServerSslContext(sockJsConfig).sslContext().createSSLEngine();