Skip to content

Commit

Permalink
Avoid using the term coverage in the report about executed events (#503)
Browse files Browse the repository at this point in the history
Signed-off-by: Hernan Ponce de Leon <[email protected]>
  • Loading branch information
hernanponcedeleon authored Aug 21, 2023
1 parent 30ade2b commit 30e5051
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ private static CharSequence generateCoverageReport(Set<Event> coveredEvents, Pro
final double branchCoveragePercentage = coveredBranches.size() * 1d / branches.size();

final StringBuilder report = new StringBuilder()
.append("Property-based coverage (executed by at least one property-violating execution, including inconsistent executions): \n")
.append("Events executed by at least one property-violating behavior, including inconsistent executions: \n")
.append("\t-- Events: ")
.append(String.format("%s (%s / %s)", df.format(eventCoveragePercentage),
programEvents.size() - messageSet.size(), programEvents.size()))
Expand Down

0 comments on commit 30e5051

Please sign in to comment.