Top "Code-coverage" questions

"Code coverage" (synonym: test coverage) is a measure of the amount of application source code that has been exercised, usually by some testing regime, often by unit testing.

Fortify file (.fpr file) to PDF convertion

Basically I am trying to generate the PDF file from the Fortify report file which is in .fpr formate. Can …

code-coverage fortify
Ignore code coverage for unit tests in EclEmma

I have configured EclEmma not to instrument my unit tests which works fine. However, the editor still highlights the test …

java eclipse code-coverage eclemma
gcov on larger projects (static libraries, ...)

I'm working on larger project which has the following directory layout: Source MyA aa.cpp ab.cpp ac.cpp MyB …

unit-testing gcc build-process code-coverage gcov
Exclude Setters and Getters in JaCoCo Code Coverage

With the cobertura-maven-plugin setters and getters can be excluded from code coverage using the ignoreTrivial option. Is there also such …

code-coverage setter getter jacoco jacoco-maven-plugin
What is the difference between code coverage and line coverage in sonar

I know what the difference is between line and branch coverage, but what is the difference between code coverage and …

code-coverage sonarqube
How to exclude files / code blocks from code coverage with Netbeans / PHPStorm / PHPUnit integration

Requirements: Netbeans with PHPUnit(6.9) EDIT: Same applies, for example, to PHPStorm How to: Exclude lines from code coverage. Exclude code …

netbeans phpunit code-coverage phpstorm
Cannot install Cobertura plugin for Eclipse

I am getting following error message when I tried to install cobertura plugin in eclipse kepler (java/j2ee version) …

eclipse code-coverage eclipse-kepler cobertura eclipse-luna
Ensuring code coverage in unit testing?

I have noticed that even though I have a lot of doctests in our Python code, when I trace the …

python unit-testing testing code-coverage
LCOV/GCOV branch coverage with C++ producing branches all over the place

We are using LCOV/GCOV to produce test coverage of our projects. Recently we tried to enable branch-coverage additionally. But …

c++ code-coverage gcov lcov
generating branch coverage data for lcov

i'm trying to use lcov for code coverage metrics, but I cannot get branches coverage to work. Here's how i'm …

c++ testing code-coverage lcov