
mockit.coverage.data.PerFileCoverage Maven / Gradle / Ivy
Go to download
JMockit Coverage is a code coverage tool with several metrics (line, path, data) capable of generating HTML
reports. It is designed with ease of use in mind, avoiding the need for complex configuration.
Instead, smart (but overridable) defaults are employed, such as the selection of which classes to consider for
coverage, and where to find sources files for report generation.
The newest version!
/*
* Copyright (c) 2006-2012 Rogério Liesenfeld
* This file is subject to the terms of the MIT license (see LICENSE.txt).
*/
package mockit.coverage.data;
import java.io.*;
public interface PerFileCoverage extends Serializable
{
int getTotalItems();
int getCoveredItems();
int getCoveragePercentage();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy