From 6cb38d021ec5fdbbf553c454cd8eb392c5e2cc8d Mon Sep 17 00:00:00 2001 From: Albert Santoni Date: Wed, 18 Dec 2013 16:26:22 -0500 Subject: [PATCH] CC-5651: Unit Test the Scheduler * Updated README --- airtime_mvc/tests/README.txt | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/airtime_mvc/tests/README.txt b/airtime_mvc/tests/README.txt index 1672b89aa..9034b2977 100644 --- a/airtime_mvc/tests/README.txt +++ b/airtime_mvc/tests/README.txt @@ -1,15 +1,17 @@ To get the Airtime unit tests running: ========================== -1) Install PHPUnit +1) Install PHPUnit and DbUnit -wget https://phar.phpunit.de/phpunit.phar -chmod +x phpunit.phar -sudo mv phpunit.phar /usr/local/bin/phpunit - -2) Install the DbUnit extension +We explicitly install PHPUnit 3.4 because that's as a new of a version +as is supported by Zend Framework 1: sudo pear channel-discover pear.phpunit.de sudo pear channel-discover pear.symfony.com -sudo pear install --alldeps phpunit/DbUnit +sudo pear channel-discover pear.symfony-project.com +sudo pear install channel://pear.symfony-project.com/YAML +sudo pear install pear.phpunit.de/PHPUnit-3.4.15 +sudo pear install pear.phpunit.de/DbUnit-1.0.3 + +