summaryrefslogtreecommitdiffstats
path: root/tests/templates/index.php
blob: b8d3dac06662be0ead6f93d383837832cb608e90 (plain)
1
2
3
4
5
6
7
8
9
10
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 ?>