This question already has answers here:
How to run a specific phpunit xml testsuite?

(5个答案)


5年前关闭。




是否可以通过命令行测试运行器从配置文件中指定要运行哪个测试套件?例如,如果我具有以下xml配置:
<phpunit ...>
    <testsuites>
        <testsuite name="My Test Suite 1">
            <directory>./MyTestSuite1/</directory>
        </testsuite>
        <testsuite name="My Test Suite 2">
            <directory>./MyTestSuite2/</directory>
        </testsuite>
    </testsuites>
    ...
</phpunit>

我可以只运行“我的测试套件1”吗?

最佳答案

  • ,您可以在类文档中使用@group标记指示组,然后使用--group
  • 仅在该组上运行测试
  • 您可以使用--filter仅运行与给定正则表达式匹配的测试

  • 更新2013

    就像@havg在下面的答案中提到的那样,现在可以使用phpunit --testsuite运行单个测试套件

    10-07 15:28