Package org.eclipse.jgit.http.server

Examples of org.eclipse.jgit.http.server.GitServlet.destroy()


    c.setInitParameter("base-path", ".");
    c.setInitParameter("export-all", "false");

    GitServlet s = new GitServlet();
    s.init(c);
    s.destroy();
  }

  @Test
  public void testInitUnderContainer_NoBasePath() throws Exception {
    server = new AppServer();
View Full Code Here


    c.setInitParameter("base-path", ".");
    c.setInitParameter("export-all", "false");

    GitServlet s = new GitServlet();
    s.init(c);
    s.destroy();
  }

  public void testInitUnderContainer_NoBasePath() throws Exception {
    server = new AppServer();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.