Files
archived-presentations/slides/xdebug/vld-path-3-code.xml
Derick Rethans 0be7231ae8 IPC 23 talks
2023-10-20 15:14:30 +01:00

27 lines
409 B
XML

<slide>
<title>Xdebug branch coverage</title>
<example>
<![CDATA[
<?php
include 'dump-branch-coverage.inc';
include 'test.php';
xdebug_start_code_coverage(
XDEBUG_CC_UNUSED |
XDEBUG_CC_DEAD_CODE |
XDEBUG_CC_BRANCH_CHECK
);
ifthenelse( true, false );
ifthenelse( false, true );
xdebug_stop_code_coverage(false);
$c = xdebug_get_code_coverage();
dump_branch_coverage($c);
?>
]]>
</example>
</slide>