0 Replies Latest reply on Mar 8, 2014 9:51 AM by msnaidu

    How to test WebSocket applications using Arquillian?

    msnaidu

      How to test Websocket applications using Arquillian?

       

      @WebSocket(path="/echo")

      public class EchoBean {

       

      @WebSocketMessage

      public String echo(String message) {

      return message + " (from your server)";

      }

      }

       

      So how to write test cases using Arquillian?