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

com.teamscale.jacoco.agent.upload.LocalDiskUploader 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.upload;

import com.teamscale.report.jacoco.CoverageFile;

/**
 * Dummy uploader which keeps the coverage file written by the agent on disk,
 * but does not actually perform uploads.
 */
public class LocalDiskUploader implements IUploader {
	@Override
	public void upload(CoverageFile coverageFile) {
		// Don't delete the file here. We want to store the file permanently on disk in
		// case no uploader is configured.
	}

	@Override
	public String describe() {
		return "configured output directory on the local disk";
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy