2008-05-30 11:40:08 +00:00
|
|
|
<?php
|
2012-11-04 11:23:36 +00:00
|
|
|
// @codingStandardsIgnoreFile
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Short description for file.
|
|
|
|
*
|
2010-10-03 16:31:21 +00:00
|
|
|
* PHP 5
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2012-04-27 02:49:18 +00:00
|
|
|
* CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html>
|
2012-03-13 02:46:07 +00:00
|
|
|
* Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2010-10-03 16:31:21 +00:00
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2012-03-13 02:46:07 +00:00
|
|
|
* @copyright Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2012-04-27 02:49:18 +00:00
|
|
|
* @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests
|
2011-07-26 06:16:14 +00:00
|
|
|
* @package Cake.TestSuite.templates
|
2008-10-30 17:30:26 +00:00
|
|
|
* @since CakePHP(tm) v 1.2.0.4433
|
2010-10-03 16:27:27 +00:00
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
|
|
|
?>
|
|
|
|
<div class="test-menu">
|
|
|
|
<ul>
|
|
|
|
<li>
|
2010-01-07 04:02:37 +00:00
|
|
|
<span style="font-size: 18px">App</span>
|
2008-05-30 11:40:08 +00:00
|
|
|
<ul>
|
2012-05-19 14:48:15 +00:00
|
|
|
<li><a href='<?php echo $cases; ?>'>Tests</a></li>
|
2008-05-30 11:40:08 +00:00
|
|
|
</ul>
|
|
|
|
</li>
|
2012-03-05 02:51:44 +00:00
|
|
|
<?php if (!empty($plugins)): ?>
|
2008-05-30 11:40:08 +00:00
|
|
|
<li style="padding-top: 10px">
|
2010-01-07 04:02:37 +00:00
|
|
|
<span style="font-size: 18px">Plugins</span>
|
2012-11-04 11:23:36 +00:00
|
|
|
<?php foreach ($plugins as $plugin) : ?>
|
2008-05-30 11:40:08 +00:00
|
|
|
<ul>
|
|
|
|
<li style="padding-top: 10px">
|
2012-05-19 14:48:15 +00:00
|
|
|
<span style="font-size: 18px"><?php echo $plugin; ?></span>
|
2008-05-30 11:40:08 +00:00
|
|
|
<ul>
|
2012-05-24 02:45:23 +00:00
|
|
|
<li><?php printf('<a href="%s&plugin=%s">Tests</a>', $cases, $plugin); ?></li>
|
2008-05-30 11:40:08 +00:00
|
|
|
</ul>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
<?php endforeach; ?>
|
2011-07-11 13:45:22 +00:00
|
|
|
</li>
|
2012-05-19 14:48:15 +00:00
|
|
|
<?php endif; ?>
|
2008-11-06 23:35:08 +00:00
|
|
|
<li style="padding-top: 10px">
|
|
|
|
<span style="font-size: 18px">Core</span>
|
|
|
|
<ul>
|
2012-05-19 14:48:15 +00:00
|
|
|
<li><a href='<?php echo $cases; ?>&core=true'>Tests</a></li>
|
2008-11-06 23:35:08 +00:00
|
|
|
</ul>
|
|
|
|
</li>
|
2008-05-30 11:40:08 +00:00
|
|
|
</ul>
|
|
|
|
</div>
|
2011-12-20 04:13:46 +00:00
|
|
|
<div class="test-results">
|