org.pitest.mutationtest.statistics.MutationStatistics Maven / Gradle / Ivy
/*
* Copyright 2011 Henry Coles
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*/
package org.pitest.mutationtest.statistics;
import org.pitest.classinfo.ClassName;
import java.io.PrintStream;
import java.text.DecimalFormat;
import java.text.DecimalFormatSymbols;
import java.util.Locale;
import java.util.Set;
import static org.pitest.util.PercentageCalculator.getPercentage;
public final class MutationStatistics {
private final Iterable scores;
private final long totalMutations;
private final long numberOfTestsRun;
private final long totalDetected;
private final long totalWithCoverage;
private final Set mutatedClasses;
public MutationStatistics(Iterable scores,
long totalMutations,
long totalDetected,
long totalWithCoverage,
long numberOfTestsRun,
Set mutatedClasses) {
this.scores = scores;
this.totalMutations = totalMutations;
this.totalDetected = totalDetected;
this.numberOfTestsRun = numberOfTestsRun;
this.totalWithCoverage = totalWithCoverage;
this.mutatedClasses = mutatedClasses;
}
public Iterable getScores() {
return this.scores;
}
public long getTotalMutations() {
return this.totalMutations;
}
public long getTotalDetectedMutations() {
return this.totalDetected;
}
public long getTotalMutationsWithCoverage() {
return this.totalWithCoverage;
}
public long getNumberOfTestsRun() {
return numberOfTestsRun;
}
private long getTotalMutationsWithoutCoverage() {
return this.totalMutations - this.totalWithCoverage;
}
public long getTotalSurvivingMutations() {
return getTotalMutations() - getTotalDetectedMutations();
}
public Set mutatedClasses() {
return mutatedClasses;
}
public int getPercentageDetected() {
return getPercentage(getTotalMutations(), getTotalDetectedMutations());
}
public void report(final PrintStream out) {
out.println(">> Generated " + this.getTotalMutations()
+ " mutations Killed " + this.getTotalDetectedMutations() + " ("
+ this.getPercentageDetected() + "%)");
out.println(">> Mutations with no coverage " + this.getTotalMutationsWithoutCoverage()
+ ". Test strength " + this.getTestStrength() + "%");
out.println(">> Ran " + this.numberOfTestsRun + " tests ("
+ getTestsPerMutation() + " tests per mutation)");
out.println("Enhanced functionality available at https://www.arcmutate.com/");
}
private String getTestsPerMutation() {
if (this.getTotalMutations() == 0) {
return "0";
}
final float testsPerMutation = this.numberOfTestsRun
/ (float) this.getTotalMutations();
return new DecimalFormat("#.##", new DecimalFormatSymbols(Locale.ENGLISH))
.format(testsPerMutation);
}
public int getTestStrength() {
return getPercentage(getTotalMutationsWithCoverage(), getTotalDetectedMutations());
}
}