58596061626364656667
server.start(); port2 = findFreePort(); server2 = newJettyHttpsServer(port2); server2.setHandler(new EchoHandler()); server2.start(); logger.info("Local HTTP server started successfully"); }
73747576777879
protected String getTargetUrl2() { return String.format("https://127.0.0.1:%d/foo/test", port2); } public AbstractHandler configureHandler() throws Exception { return new EchoHandler(); }
5354555657585960
@BeforeClass(alwaysRun = true) public void setUpBeforeTest() throws Exception { port = TestUtils.findFreePort(); server = TestUtils.newJettyHttpServer(port); server.setHandler(new EchoHandler()); server.start(); }