PHPUnit won't run tests by directory
- by Frank Schwieterman
I'm new to PHP, trying to get multiple tests to run at once. I was hoping to just run all tests in a directory, which seemed to work awhile (instead of using a phpunit.xml). I am able to run a test individually like so:
phpunit FirstUnitTest sites\all\modules\experiment\unit-tests\FirstUnitTest.lua
But when I try to run the same test by directory, its not found. I try using:
phpunit sites\all\modules\experiment\unit-tests
Does anyone know why this may not work?