In the "Perl build, unit testing, code coverage: A complete working example by Kurt W. Leucht" we see that we run build testcover
and bet the coverage report. We see the result in the figure "File Cover". Can anyone tell what does the number shown under stmt, bran, sub and time indicate?
Asked
Active
Viewed 568 times
2
-
In what? Is that a book? Amazon doesn't appear to have heard of the author. – Quentin Apr 27 '10 at 09:47
-
1in the link: http://stackoverflow.com/questions/533553/perl-build-unit-testing-code-coverage-a-complete-working-example/533577#533577 – Shwetha Apr 27 '10 at 09:54
-
1You should post this question as a comment on the original SO post, not here. – Ether Apr 27 '10 at 16:18
1 Answers
8
See Paul Johnson's presentations on Devel::Cover
, for instance this one.

codeholic
- 5,680
- 3
- 23
- 43
-
1Or even just read the [Devel::Cover](http://search.cpan.org/dist/Devel-Cover) docs. – brian d foy Apr 27 '10 at 18:43
-