" on port <" + port + ">" +
" with contextPath <" + contextPath + ">" +
" and resourceBase <" + resourceBase + ">");
httpServer = new Server();
ServletHttpContext jsunitContext = new ServletHttpContext();
jsunitContext.setContextPath(contextPath);
jsunitContext.setResourceBase(resourceBase);
ResourceHandler resourceHandler = new ResourceHandler();
resourceHandler.setDirAllowed(false);
jsunitContext.addHandler(resourceHandler);
httpServer.addContext(jsunitContext);
SocketListener listener = new SocketListener();
listener.setPort(port);
httpServer.addListener(listener);