Skip to content

Commit

Permalink
Do not report 100% if not all mutants were killed
Browse files Browse the repository at this point in the history
  • Loading branch information
Vampire committed May 8, 2023
1 parent 4f9beec commit 1e92adb
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,12 @@ public long getPercentageDetected() {
return 0;
}

return Math.round((100f / getTotalMutations())
* getTotalDetectedMutations());
if (getTotalMutations() == getTotalDetectedMutations()) {
return 100;
}

return Math.min(99, Math.round((100f / getTotalMutations())
* getTotalDetectedMutations()));
}

public void report(final PrintStream out) {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
/*
* 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.junit.Test;

import static org.junit.Assert.assertEquals;

public class MutationStatisticsTest {

@Test
public void shouldNotHaveHundredPercentIfNotAllKilled() {
assertEquals(99, new MutationStatistics(null, 2000, 1999, 1).getPercentageDetected());
}

@Test
public void shouldHaveHundredPercentIfAllKilled() {
assertEquals(100, new MutationStatistics(null, 2000, 2000, 1).getPercentageDetected());
}

@Test
public void shouldHaveHundredPercentIfNoMutations() {
assertEquals(100, new MutationStatistics(null, 0, 0, 0).getPercentageDetected());
}

}

0 comments on commit 1e92adb

Please sign in to comment.