blob: c0f254ce1b08b3f64ad6797d6993a99efc9db384 [file] [log] [blame]
package com.googlesource.gerrit.plugins.analytics.wizard.fixtures
import org.eclipse.jgit.lib.Config
trait TestFixtures {
def gerritConfig(httpProtocol: String, httpPort: Int): Config = {
val gerritConfig = new Config()
gerritConfig.fromText(s"""
|[httpd]
| listenUrl = $httpProtocol://*:$httpPort/
""".stripMargin)
gerritConfig
}
}