2008-05-30 11:40:08 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2013-11-13 22:58:34 +01:00
|
|
|
* Missing PHPUnit error page.
|
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
|
|
|
*/
|
|
|
|
?>
|
2010-01-05 23:12:28 -05:00
|
|
|
<?php include dirname(__FILE__) . DS . 'header.php'; ?>
|
2008-11-07 11:33:13 +00:00
|
|
|
<div id="content">
|
2010-06-28 22:59:01 -04:00
|
|
|
<h2>PHPUnit is not installed!</h2>
|
|
|
|
<p>You must install PHPUnit to use the CakePHP(tm) Test Suite.</p>
|
2011-10-17 09:31:31 -04:00
|
|
|
<p>PHPUnit can be installed with pear, using the pear installer.</p>
|
2010-11-07 18:00:22 -05:00
|
|
|
<p>To install with the PEAR installer run the following commands:</p>
|
|
|
|
<ul>
|
2012-05-19 22:04:06 -07:00
|
|
|
<li><code>pear config-set auto_discover 1</code></li>
|
|
|
|
<li><code>pear install pear.phpunit.de/PHPUnit</code></li>
|
2010-11-07 18:00:22 -05:00
|
|
|
</ul>
|
2012-01-21 10:23:25 -05: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-19 22:04:06 -07: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 22:58:30 +02:00
|
|
|
<p><a href="https://github.com/sebastianbergmann/phpunit" target="_blank">Download PHPUnit</a></p>
|
2010-01-05 23:12:28 -05:00
|
|
|
</div>
|
2012-03-04 21:51:44 -05:00
|
|
|
<?php
|
|
|
|
include dirname(__FILE__) . DS . 'footer.php';
|