I have script called Script.php and tests for it in Tests/Script.php, but when I run phpunit Tests it does not execute any tests in my test file. How do I run all my tests with
Php test's filename must end with Test.php
phpunit mydir will run all scripts named xxxxTest.php in directory mydir
phpunit mydir
xxxxTest.php
(looks likes it's not described in the phpunit documentation)