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

com.teamscale.report.testwise.model.FileCoverage Maven / Gradle / Ivy

There is a newer version: 34.2.0
Show newest version
package com.teamscale.report.testwise.model;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;

/** Holds coverage of a single file. */
public class FileCoverage {

	/** The name of the file. */
	public final String fileName;

	/** A list of line ranges that have been covered. */
	public final String coveredLines;

	@JsonCreator
	public FileCoverage(@JsonProperty("fileName") String fileName, @JsonProperty("coveredLines") String coveredLines) {
		this.fileName = fileName;
		this.coveredLines = coveredLines;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy