如何在phing build.xml中使用现有的phpunit.xml?

时间:2012-08-06 08:37:05

标签: php phpunit phing

我有一个现有的 phpunit.xml (phpunit的配置文件),如下所示:

<phpunit backupGlobals="false"
    backupStaticAttributes="false"
    bootstrap="./tests/bootstrap.php"
    convertErrorsToExceptions="true"
    convertNoticesToExceptions="true"
    convertWarningsToExceptions="true"
    strict="true" 
    verbose="true"
    colors="true">

    <testsuites>
        <testsuite name="My Tests">
            <directory>./tests</directory>
        </testsuite>
</testsuites>
</phpunit>

正如DRY所说,我不想简单地复制&amp;将 phpunit.xml 的内容粘贴到我的 build.xml ,以使用相同的配置运行phpunit。

Phing的 build.xml 中的目标如下所示:

<target name="unit-test">
    <phpunit printsummary="true" />
</target>

即使那个phpunit也应该自动找到phpunit.xml(当我手动启动它时就像输入“phpunit”到我的终端并按下输入,它可以工作)并使用它,如果是phing,输出看起来像这样: / p>

[phpunit] Total tests run: 0, Failures: 0, Errors: 0, Incomplete: 0, Skipped: 0, Time elapsed: 0.00122 s

那么有什么办法,如何达到描述的行为?

2 个答案:

答案 0 :(得分:9)

使用since属性{/ 3>可能configuration phing 2.4.13

<phpunit configuration="path/to/phpunit.xml"/>

答案 1 :(得分:2)

可能的解决方案之一是

<exec command="phpunit" logoutput="/dev/stdout" />

但它错过了连接phpunit&amp; phing。

我恐怕没有其他优雅的解决方案,因为TestRunner在phing&amp; phpunit