Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What are some code coverage tools for Perl?

Are there any good (and preferably free) code coverage tools out there for Perl?

like image 509
Kurt W. Leucht Avatar asked Oct 23 '08 14:10

Kurt W. Leucht


People also ask

What is the best code coverage?

With that being said it is generally accepted that 80% coverage is a good goal to aim for. Trying to reach a higher coverage might turn out to be costly, while not necessary producing enough benefit. The first time you run your coverage tool you might find that you have a fairly low percentage of coverage.

What is GCOV code coverage?

Gcov is a source code coverage analysis and statement-by-statement profiling tool. Gcov generates exact counts of the number of times each statement in a program is executed and annotates source code to add instrumentation. Gcov comes as a standard utility with the GNU Compiler Collection (GCC) suite.

What is test coverage tool?

Test Coverage Tools can be defined as the tools that take care of the Testing process's important objective. It evaluates the range of test execution carried out against functional and non –functional requirements provided for the tested software.


1 Answers

As usual, CPAN is your friend: Have a look at Devel::Cover

like image 142
Sherm Pendley Avatar answered Sep 19 '22 17:09

Sherm Pendley