Has anyone tried to use Awaitility to test a Netty Client and Server.
I want to test that the server has received all messages from the Client and any other tests that might be useful.
I suppose the only thing is how to get the number of messages the Server received from the Server side Handler
`MyMessageHandler handler = channelPipelineFactory.getPipeline().get(MyMessageHandler.class);`
It's not nice but only wait I could think of getting the Server upstream handler to test the Client messages were received. – DarVar Jan 13 '12 at 12:25