View on GitHub

kotlinx-kover

Kover JVM instrumentation agent

On the fly instrumentation

On the fly instrumentation - modification of the bytecode of classes in order to measure coverage, that occurs when the class is loaded into the JVM.

To instrument the loaded classes, it is necessary to connect a JVM agent to the Java application being launched.

Getting a readable report

To get a readable coverage report, you need to:

  1. Connect JVM agent on JVM start.
  2. Run your tests and wait until it exits. When the application is finished, the binary report file will be saved.
  3. Using the Kover CLI, generate a human-readable report from a binary report.

Connecting the JVM agent

  1. Download the latest version of the Kover JVM agent jar from maven repository.
  2. Put JVM agent jar file in a local directory (Important! renaming a jar file is not allowed).
  3. Create a file with agent arguments, learn more about the arguments.
  4. Add an argument to the java application startup command -javaagent:<path_to_agent_jar>=file:<path_to_settings_file>. Example of an application launch command java -jar application.jar -javaagent:/opt/kover-jvm-agent-0.8.2.jar=file:/tmp/agent.args.

Kover JVM arguments file

The arguments file is a set of settings, each of which is written on a new line. Line format: argument_name=argument_value

report.file argument is required, while the rest are optional.

List of all available arguments:

It is possible to use exclude and exclude.regex at the same time, also include and include.regex.

Example of arguments file:

report.file=/tmp/kover-report.ic
exclude=com.example.*