use of com.teamscale.jacoco.agent.options.TestAgentOptionsBuilder in project teamscale-jacoco-agent by cqse.
the class AgentHttpServerTest method setup.
/**
* Starts the http server to control the agent
*/
@BeforeEach
public void setup() throws Exception {
AgentOptions options = new TestAgentOptionsBuilder().withHttpServerPort(httpServerPort).withTeamscaleMessage(defaultCommitMessage).withTeamscalePartition(defaultPartition).create();
agent = new Agent(options, null);
}
Aggregations