Package de.akquinet.devops

Examples of de.akquinet.devops.GitblitRunnable


   * starts a gitblit server instance in a separate thread before test cases
   * of concrete, non-abstract child-classes are executed
   */
  @BeforeClass
  public static void setUpClass() {
    Runnable gitblitRunnable = new GitblitRunnable(HTTP_PORT, HTTPS_PORT,
        SHUTDOWN_PORT, GITBLIT_PROPERTIES_PATH, USERS_PROPERTIES_PATH);

    serverThread = new Thread(gitblitRunnable);
    serverThread.start();
    FirefoxProfile firefoxProfile = new FirefoxProfile();
View Full Code Here

TOP

Related Classes of de.akquinet.devops.GitblitRunnable

Copyright © 2018 www.massapicom. 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.