*/
public class PlainSocketTestDriver {
public static void main(String[] args) throws Exception {
Injector injector = Guice.createInjector(new SocketModule(), new PlainSocketModule(), new AsyncServerTestModule());
PlainSocketMessageSender messageSender = injector.getInstance(PlainSocketMessageSender.class);
System.out.println("Starting the PlainSocketServer Test");
final PlainServerSocket plainServerSocket = injector.getInstance(PlainServerSocket.class);
FutureTask<Long> plainFutureTask = new FutureTask<>(new Callable<Long>() {
@Override