Summary
Total Coverage (?) : |
% |
Total Files Covered (?) : |
% |
Report Generation Date : |
|
Coverage (?)
File |
Coverage |
$coverage) { ?>
|
% |
Files Not Covered (?)
$file) { ?>
|
Glossary
- Total Coverage
- Ratio of all the lines of executable code that were executed to the
lines of code that were not executed. This does not include the files
that were not covered at all.
- Total Files Covered
- This is the ratio of the number of files tested, to the number of
files not tested at all.
- Coverage
- These files were parsed and loaded by the php interpreter while
running the tests. Percentage is determined by the ratio of number of
lines of code executed to the number of possible executable lines of
code. "dead" lines of code, or code that could not be executed
according to xdebug, are counted as covered because in almost all cases
it is the end of a logical loop.
- Files Not Covered
- These files were not loaded by the php interpreter at anytime
during a unit test. You could consider these files having 0% coverage,
but because it is difficult to determine the total coverage unless you
could count the lines for executable code, this is not reflected in the
Total Coverage calculation.
Code coverage generated by SimpleTest