This very simple test runner was inspired by karma (another test runner for javascript).
Blog post: http://uyi.ehondor.com/blog/simple-php-testrunner-using-phpunit/
$ npm install phpunit-testrunner
$ phpunit-testrunner -c path/to/configuration/file.js
Use the following as a template for the required configuration file.
{
"rootPath": ".",
"fileOrDirectoriesToWatch": [
"src/Acme"
],
"commandArguments": [
"-c",
"app/phpunit.xml",
"--testsuite",
"TestSuite"
]
}
###TODO
- Add better documentation
- Add a
--version
option - Add unit tests