Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve clarity of line and branch coverage format.
- Put percentage first and then covered and total counts in brackets afterwards. Percentage is most critical at a quick glance. - Put line and brnach coverage on separate lines. Now it shows in a clean format, including covered branches, total branches and percent of covered branches. Something like this: ``` Coverage report generated for (1/10), (10/10), (2/10), (3/10), (4/10), (5/10), (6/10), (7/10), (8/10), (9/10) to /Users/me/Development/cntral/coverage. Line Coverage: 58.44% (7554 / 12927) Branch Coverage: 50.43% (1868 / 3704) ``` When branch coverage is not enabled it simply omits that line, so it appears like this: ``` Coverage report generated for (1/10), (10/10), (2/10), (3/10), (4/10), (5/10), (6/10), (7/10), (8/10), (9/10) to /Users/me/Development/cntral/coverage. Line Coverage: 58.44% (7554 / 12927) ```
- Loading branch information