All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.teamscale.jacoco.agent.options.EMode Maven / Gradle / Ivy

Go to download

JVM profiler that simplifies various aspects around recording and uploading test coverage

There is a newer version: 34.0.2
Show newest version
package com.teamscale.jacoco.agent.options;

/** Describes the two possible modes the agent can be started in. */
public enum EMode {

	/**
	 * The default mode which produces JaCoCo XML coverage files on exit, in a defined interval or when triggered via an
	 * HTTP endpoint. Each dump produces a new file containing the all collected coverage.
	 */
	NORMAL,

	/**
	 * Testwise coverage mode in which the agent only dumps when triggered via an HTTP endpoint. Coverage is written as
	 * exec and appended into a single file.
	 */
	TESTWISE
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy