org.pitest.coverage.BlockCoverage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pitest Show documentation
Show all versions of pitest Show documentation
Mutation testing system for Java.
package org.pitest.coverage;
import java.util.Collection;
public class BlockCoverage {
private final BlockLocation block;
private final Collection tests;
public BlockCoverage(final BlockLocation block, final Collection tests) {
this.block = block;
this.tests = tests;
}
public BlockLocation getBlock() {
return this.block;
}
public Collection getTests() {
return this.tests;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy