Logger.getLogger("org.apache.catalina.startup.ContextConfig").setLevel(Level.WARNING);
}
static Tomcat main = TomcatStandaloneMain.setUp(port);
public void testSimple() throws IOException {
HttpConnector clientCon = HttpClient.newClient();
HttpChannel ch = clientCon.get("localhost", port);
ch.getRequest().setRequestURI("/index.html");
ch.getRequest().send();
BBuffer res = ch.readAll(null, 0);