2008-05-30 11:40:08 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2010-06-28 23:01:25 -04:00
|
|
|
* Missing PHPUnit
|
|
|
|
* error page.
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2010-10-03 12:31:21 -04:00
|
|
|
* PHP 5
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2010-05-18 22:15:13 -03:00
|
|
|
* CakePHP(tm) Tests <http://book.cakephp.org/view/1196/Testing>
|
2011-05-29 17:31:39 -04:00
|
|
|
* Copyright 2005-2011, 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
|
|
|
|
* Redistributions of files must retain the above copyright notice
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2011-05-29 17:31:39 -04:00
|
|
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2010-05-18 22:15:13 -03:00
|
|
|
* @link http://book.cakephp.org/view/1196/Testing CakePHP(tm) Tests
|
2010-12-24 13:57:20 -05:00
|
|
|
* @package cake.tests.libs
|
2008-10-30 17:30:26 +00:00
|
|
|
* @since CakePHP(tm) v 1.2.0.4433
|
2010-10-03 12:27:27 -04:00
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
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>
|
2010-11-07 18:00:22 -05:00
|
|
|
<p>PHPUnit can either be installed with pear, using the pear installer. Or the 'PHPUnit' directory from the distribution can be placed in one of your vendors directories.</p>
|
2008-11-07 11:33:13 +00:00
|
|
|
<ul>
|
|
|
|
<li><?php echo CAKE; ?>vendors </li>
|
|
|
|
<li><?php echo APP_DIR . DS; ?>vendors</li>
|
|
|
|
</ul>
|
2010-11-07 18:00:22 -05:00
|
|
|
<p>To install with the PEAR installer run the following commands:</p>
|
|
|
|
<ul>
|
|
|
|
<li>pear channel-discover pear.phpunit.de</li>
|
|
|
|
<li>pear channel-discover components.ez.no</li>
|
|
|
|
<li>pear channel-discover pear.symfony-project.com</li>
|
|
|
|
<li>pear install phpunit/PHPUnit</li>
|
|
|
|
</ul>
|
2010-11-07 18:02:19 -05:00
|
|
|
<p>For full instructions on how to <a href="http://www.phpunit.de/manual/current/en/installation.html">install PHPUnit, see the PHPUnit installation guide</a>.</p>
|
2010-06-28 22:59:01 -04:00
|
|
|
<p><a href="http://github.com/sebastianbergmann/phpunit" target="_blank">Download PHPUnit</a></p>
|
2010-01-05 23:12:28 -05:00
|
|
|
</div>
|
|
|
|
<?php include dirname(__FILE__) . DS . 'footer.php'; ?>
|