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
|
|
|
*
|
2010-05-19 01:15:13 +00:00
|
|
|
* CakePHP(tm) Tests <http://book.cakephp.org/view/1196/Testing>
|
2011-05-29 21:31:39 +00:00
|
|
|
* Copyright 2005-2011, 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
|
|
|
*
|
2011-05-29 21:31:39 +00:00
|
|
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2010-05-19 01:15:13 +00:00
|
|
|
* @link http://book.cakephp.org/view/1196/Testing 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
|
|
|
*/
|
|
|
|
?>
|
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>
|
2010-11-07 23:00:22 +00: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 23:00:22 +00: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 23:02:19 +00: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-29 02:59:01 +00:00
|
|
|
<p><a href="http://github.com/sebastianbergmann/phpunit" target="_blank">Download PHPUnit</a></p>
|
2010-01-06 04:12:28 +00:00
|
|
|
</div>
|
|
|
|
<?php include dirname(__FILE__) . DS . 'footer.php'; ?>
|