About C#/.NET programming, BlogEngine usage, and Software testing
How to installing PHPUnit 3.4
PHPUnit 3.4 requires PHP 5.1.4 (or later) but PHP 5.3.2 (or later) is highly recommended. It should be installed using the PEAR Installer. This installer is the backbone of PEAR, which provides a distribution system for PHP packages, and is shipped with every release of PHP since version 4.3.0.
The PEAR channel (pear.phpunit.de) that is used to distribute PHPUnit needs to be registered with the local PEAR environment. Furthermore, a component that PHPUnit depends upon is hosted on the Symfony Components PEAR channel (pear.symfony-project.com).
pear channel-discover pear.phpunit.de
pear channel-discover pear.symfony-project.com
This has to be done only once. Now the PEAR Installer can be used to install packages from the PHPUnit channel:
pear install phpunit/PHPUnit
After the installation you can find the PHPUnit source files inside your local PEAR directory; the path is usually /usr/lib/php/PHPUnit.
Although using the PEAR Installer is the only supported way to install PHPUnit, you can install PHPUnit manually. For manual installation, do the following:
-
Download a release archive from
http://pear.phpunit.de/get/and extract it to a directory that is listed in theinclude_pathof yourphp.iniconfiguration file. -
Prepare the
phpunitscript:-
Rename the
phpunit.phpscript tophpunit. -
Replace the
@php_bin@string in it with the path to your PHP command-line interpreter (usually/usr/bin/php). -
Copy it to a directory that is in your path and make it executable (
chmod +x phpunit).
-
-
Prepare the
PHPUnit/Util/PHP.phpscript:-
Replace the
@php_bin@string in it with the path to your PHP command-line interpreter (usually/usr/bin/php).
-
| Print article | This entry was posted by admin on April 15, 2010 at 9:04 pm, and is filed under Uncategorized. Follow any responses to this post through RSS 2.0. You can leave a response or trackback from your own site. |