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

org.pitest.aggregate.AggregationResult Maven / Gradle / Ivy

There is a newer version: 1.17.3
Show newest version
package org.pitest.aggregate;

public class AggregationResult {
  private final long mutations;
  private final long mutationsSurvived;
  private final int  mutationCoverage;

  private final int testStrength;

  public AggregationResult(long mutations, long mutationsSurvived, int mutationCoverage, int testStrength) {
    this.mutations = mutations;
    this.mutationsSurvived = mutationsSurvived;
    this.mutationCoverage = mutationCoverage;
    this.testStrength = testStrength;
  }

  public long getMutations() {
    return mutations;
  }

  public long getMutationsSurvived() {
    return mutationsSurvived;
  }

  public int getMutationCoverage() {
    return mutationCoverage;
  }

  public int getTestStrength() {
    return testStrength;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy