PHPUnit传递配置文件和测试文件路径

时间:2016-10-13 13:21:01

标签: phpunit

我希望将尽可能多的配置存储在配置文件中。有时我想只在特定文件中运行测试,除了使用我的常规配置选项。有没有办法传递配置文件和单个测试文件路径以运行PHPUnit?

1 个答案:

答案 0 :(得分:0)

你能使用测试套件吗?

示例:

配置文件:

<testsuites>
    <testsuite name="Example">
        <directory suffix="Test.php">src/tests</directory>
        <file>tests/WhateverTest.php</file>
    </testsuite>
</testsuites>

命令行:

phpunit --testsuite Example