}
private ContextHandler createUpdateContext() {
ResourceHandler resource_handler = new ResourceHandler();
resource_handler.setDirectoriesListed(true);
File rootFolder = new RootFolderSelector().getRootFolder();
resource_handler.setResourceBase(new File(rootFolder, "src/test/resources/httpUpdateServerBase").getAbsolutePath());
ContextHandler contextHandler = new ContextHandler();
contextHandler.setHandler(resource_handler);
contextHandler.setContextPath("/updates");
return contextHandler;