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

mockit.coverage.data.PerFileCoverage Maven / Gradle / Ivy

/*
 * Copyright (c) 2006 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 - 2024 Weber Informatics LLC | Privacy Policy