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

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

/*
 * Copyright (c) 2006 JMockit developers
 * This file is subject to the terms of the MIT license (see LICENSE.txt).
 */
package mockit.coverage.data;

import java.io.*;
import javax.annotation.*;

public interface PerFileCoverage extends Serializable
{
   @Nonnegative int getTotalItems();
   @Nonnegative int getCoveredItems();
   int getCoveragePercentage();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy