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

org.pitest.coverage.BlockCoverage Maven / Gradle / Ivy

There is a newer version: 1.17.1
Show newest version
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