Questions tagged [devel-cover]

Devel::Cover - Code coverage metrics for Perl

Devel::Cover - Code coverage metrics for Perl

This module provides code coverage metrics for Perl. Code coverage metrics describe how thoroughly tests exercise code. By using Devel::Cover you can discover areas of code not exercised by your tests and determine which tests to create to increase coverage. Code coverage can be considered an indirect measure of quality.

Quick start for Devel::Cover

33 questions
0
votes
1 answer

Devel::Cover usage with a wrapper and a .pm module with a test script

I have a .pm module (Main.pm) which has a wrapper around it written in perl(Mainwrapper). These two are part of development team. I have written a test script in perl to test the wrapper(Testwrapper.pl). Now, I need to get the coverage using…
Enthusiast
  • 85
  • 1
  • 6
0
votes
2 answers

How should I use the results of Devel::Cover?

How should I use the results of Devel::Cover to make changes in the code? What do I do next with my code?
-1
votes
1 answer

Devel::Cover report Branch and condition Coverage shows n/a in the report ??

I am generating the coverage for some .pm and mason file using apache by using Devel::Cover But for the mason file the coverage for branch and condition is showing n/a while for the same mason file statement coverage is coming 100%. Please Help.
1 2
3