Simpletest Coverage - modules/aggregator/aggregator-wrapper.tpl.php

1 <?php
2 // $Id: aggregator-wrapper.tpl.php,v 1.3 2009/07/23 22:14:26 webchick Exp $
3
4 /**
5 * @file
6 * Default theme implementation to wrap aggregator content.
7 *
8 * Available variables:
9 * - $content: All aggregator content.
10 * - $page: Pager links rendered through theme_pager().
11 *
12 * @see template_preprocess()
13 * @see template_preprocess_aggregator_wrapper()
14 */
15 ?>
16 <div id="aggregator">
17 <?php print $content; ?>
18 <?php print $pager; ?>
19 </div>
20

Legend

Missed
lines code that were not excersized during program execution.
Covered
lines code were excersized during program execution.
Comment/non executable
Comment or non-executable line of code.
Dead
lines of code that according to xdebug could not be executed. This is counted as coverage code because in almost all cases it is code that runnable.