Simpletest Coverage - modules/system/box.tpl.php

1 <?php
2 // $Id: box.tpl.php,v 1.4 2008/10/13 12:31:43 dries Exp $
3
4 /**
5 * @file
6 * Default theme implementation to display a box.
7 *
8 * Available variables:
9 * - $title: Box title.
10 * - $content: Box content.
11 *
12 * @see template_preprocess()
13 */
14 ?>
15 <div class="box">
16
17 <?php if ($title): ?>
18 <h2><?php print $title ?></h2>
19 <?php endif; ?>
20
21 <div class="content"><?php print $content ?></div>
22 </div>
23

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.