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

com.teamscale.report.testwise.model.PathCoverage 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;

import java.util.List;

/** Container for {@link FileCoverage}s of the same path. */
public class PathCoverage {

	/** File system path. */
	private final String path;

	/** Files with coverage. */
	private final List files;

	@JsonCreator
	public PathCoverage(@JsonProperty("path") String path, @JsonProperty("files") List files) {
		this.path = path;
		this.files = files;
	}

	public String getPath() {
		return path;
	}

	public List getFiles() {
		return files;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy