Answers for "how to run single test in phpunit"

1

how to run single test in phpunit

phpunit --filter methodName ClassName path/to/file.php
# For newer versions of phpunit, it is just:
phpunit --filter methodName path/to/file.php
Posted by: Guest on February-17-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language