标签: php phpunit
我已经搜索并阅读了文档,或者至少我认为我有,但我一直无法找到是否有办法获取PHPUNIT所有跳过的测试列表?
这可能吗?
答案 0 :(得分:2)
你可以使用awk获得一些东西:
phpunit -v | awk '/skipped tests/,/Tests\:/'
这将从There are x skipped tests的开头输出一个列表到输出的末尾,并带有摘要行
There are x skipped tests