Package org.springframework.web.socket.sockjs.client.TestTransport

Examples of org.springframework.web.socket.sockjs.client.TestTransport.XhrTestTransport


  @Before
  @SuppressWarnings("unchecked")
  public void setup() {
    this.infoReceiver = mock(InfoReceiver.class);
    this.webSocketTransport = new TestTransport("WebSocketTestTransport");
    this.xhrTransport = new XhrTestTransport("XhrTestTransport");

    List<Transport> transports = new ArrayList<>();
    transports.add(this.webSocketTransport);
    transports.add(this.xhrTransport);
    this.sockJsClient = new SockJsClient(transports);
View Full Code Here

TOP

Related Classes of org.springframework.web.socket.sockjs.client.TestTransport.XhrTestTransport

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.