2008-05-30 11:40:08 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2010-06-29 03:01:25 +00:00
|
|
|
* Missing PHPUnit
|
|
|
|
* error page.
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
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>
|
2013-02-08 11:59:49 +00:00
|
|
|
* Copyright (c) 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
|
2013-02-08 12:22:51 +00:00
|
|
|
* For full copyright and license information, please see the LICENSE.txt
|
2010-10-03 16:31:21 +00:00
|
|
|
* Redistributions of files must retain the above copyright notice
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2013-02-08 11:59:49 +00:00
|
|
|
* @copyright Copyright (c) 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
|
2013-05-30 22:11:14 +00:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.php MIT License
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
|
|
|
?>
|
2010-01-06 04:12:28 +00:00
|
|
|
<?php include dirname(__FILE__) . DS . 'header.php'; ?>
|
2008-11-07 11:33:13 +00:00
|
|
|
<div id="content">
|
2010-06-29 02:59:01 +00:00
|
|
|
<h2>PHPUnit is not installed!</h2>
|
|
|
|
<p>You must install PHPUnit to use the CakePHP(tm) Test Suite.</p>
|
2011-10-17 13:31:31 +00:00
|
|
|
<p>PHPUnit can be installed with pear, using the pear installer.</p>
|
2010-11-07 23:00:22 +00:00
|
|
|
<p>To install with the PEAR installer run the following commands:</p>
|
|
|
|
<ul>
|
2012-05-20 05:04:06 +00:00
|
|
|
<li><code>pear config-set auto_discover 1</code></li>
|
|
|
|
<li><code>pear install pear.phpunit.de/PHPUnit</code></li>
|
2010-11-07 23:00:22 +00:00
|
|
|
</ul>
|
2012-01-21 15:23:25 +00:00
|
|
|
<p>Once PHPUnit is installed make sure its located on PHP's <code>include_path</code> by checking your php.ini</p>
|
2012-05-20 05:04:06 +00:00
|
|
|
<p>For full instructions on how to <a href="http://www.phpunit.de/manual/current/en/installation.html" target="_blank">install PHPUnit, see the PHPUnit installation guide</a>.</p>
|
2013-06-25 20:58:30 +00:00
|
|
|
<p><a href="https://github.com/sebastianbergmann/phpunit" target="_blank">Download PHPUnit</a></p>
|
2010-01-06 04:12:28 +00:00
|
|
|
</div>
|
2012-03-05 02:51:44 +00:00
|
|
|
<?php
|
|
|
|
include dirname(__FILE__) . DS . 'footer.php';
|