merkushin / php.autotest
There is no license information available for the latest version (dev-main) of this package.
Run tests automatically
dev-main
2017-04-01 19:37 UTC
Requires
- phpunit/phpunit: 4.8.*
- symfony/console: 2.4.*
This package is not auto-updated.
Last update: 2025-03-21 22:25:01 UTC
README
Requirements
- PHP 5.3+
- PHPUnit
- Symfony/Console
Installation
Download and unpack php.autotest.
Download Composer (http://getcomposer.org) and run:
composer.phar install
Composer installs Console component
Optionally link bin/autotest.php to your /usr/bin like this:
ln bin/autotest.php /usr/bin/autotest
Usage
Run bin/autotest.php with optional params from the root of your application:
cmd
— path to phpunit (optional, default value: phpunit)src_path
— path to your source code (optional, default value: src)tests_path
— path to your tests (optional, default value: tests)suffix
— suffix of the test namespace (optional, default value: Test)timeout
— time between comparing files (optional, default value: 1 second)
Example (assuming file is linked to bin directory):
autotest --cmd=/usr/local/zend/bin/phpunit --src_path=source --tests_path=MyTests --timeout=60