* 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();