kaazing / java.client

Kaazing WebSocket client using RFC-6455 and emulated protocols, plus AMQP protocol client
http://kaazing.org
Apache License 2.0
20 stars 18 forks source link

Added fix in order for unit tests to pass successfully #10

Closed AdrianCozma closed 9 years ago

AdrianCozma commented 9 years ago

Added the lines:

WebSocketEmulatedHandler.createHandlerFactory = CreateHandlerImpl.FACTORY; WebSocketEmulatedHandler.upstreamHandlerFactory = UpstreamHandlerImpl.FACTORY; WebSocketEmulatedHandler.downstreamHandlerFactory = DownstreamHandlerImpl.FACTORY;

at the end of both tests in the "org.kaazing.gateway.client.impl.wseb.WebSocketEmulatedHandlerTest" class(testProcessOpen and testProcessFailed) in order to fix a build error on Ubuntu regarding some failing unit tests(more details in build error).

AdrianCozma commented 9 years ago

the class will be updated by sanjay from his fork