Answers for "how to run phpunit tests"

PHP
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

Browse Popular Code Answers by Language