Answers for "run specific test phpunit"

PHP
4

how run phpunit test repeat

phpunit --repeat <times> testName.php (https://gitlab.com/MirikAkhmedov)
Posted by: Guest on October-10-2021
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