array getCodeCoverageInformation(
)
|
|
Returns Code Coverage data per test case.
Format of the result array:
1 array(
2 "testCase" => array(
3 "/tested/code.php" => array(
4 linenumber => flag
5 )
6 )
7 )
flag < 0: Line is executable but was not executed. flag > 0: Line was executed.