在PHPUnit的帮助中,它显示以下内容:
--group ... Only runs tests from the specified group(s).
--exclude-group ... Exclude tests from the specified group(s).
一组很容易。这有效:
phpunit --group fast
现在,我不太清楚如何与多个小组一起执行此操作。以下不适用于我:
phpunit --group fast unit # It believes you want to test unit.php
phpunit --group fast, unit # It believes you want to test unit.php
phpunit --group "fast unit" # It looks for a single group "fast unit"
phpunit --groups fast, unit # There is no option, groups
phpunit --group fast --group unit # Only one is honored
任何对正确语法的想法都将受到欢迎。谢谢你。
最佳答案
使用逗号分隔,没有任何空格。例如。
phpunit --group fast,unit
关于php - 使用PHPUnit,如何仅测试两个或多个组?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4806260/