diff options
Diffstat (limited to 'tests/templates/index.php')
-rw-r--r-- | tests/templates/index.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/templates/index.php b/tests/templates/index.php new file mode 100644 index 00000000000..b8d3dac0666 --- /dev/null +++ b/tests/templates/index.php @@ -0,0 +1,11 @@ +<?php foreach($_['tests'] as $name=>$results):?> + <h2><?php echo $name;?></h2> + <ul> + <?php foreach($results as $test=>$result):?> + <li> + <b><?php echo $test;?></b> + <?php echo $result;?> + </il> + <?php endforeach ?> + </ul> +<?php endforeach ?>
\ No newline at end of file |