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