Set up the environment
PHPUnit
should be installed using the PEAR Installer.
Upgrading PEAR
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ pear version | |
PEAR Version: 1.9.1 | |
PHP Version: 5.3.3-1ubuntu9.5 | |
Zend Engine Version: 2.3.0 |
If you have version less than 1.9 it is recommended to update the PEAR channel and upgrade the PEAR.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ sudo pear channel-update pear.php.net | |
$ sudo pear upgrade-all |
Installing PHP Extensions
PHPUnit depends on package pear/XML_RPC2 that requires curl.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ sudo apt-get install php5-curl |
Need to install Xdebug to run the tests and generate code coverage.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ sudo apt-get install php5-xdebug |
Installing PHPUnit
Installing PHPUnit with all dependencies.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ sudo pear install -a phpunit/PHPUnit |
Installing Selenium
Selenium RC integration for PHPUnit.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ sudo pear install phpunit/PHPUnit_Selenium |
You need to download Selenium Server from the
http://seleniumhq.org/download/
You can download the SeleniumIDE which is Firefox
plugin that does record-and-playback of interactions with the browser.
In the next post we will discuss how to write your first test case using PHPUnit. Keep your testing environment configured. :)