如何在phing中使用phpunit?

时间:2016-10-17 03:04:42

标签: php xml configuration phpunit phing

根据 How to use existing phpunit.xml in phing build.xml? 在这样的phing中使用phpunit.xml应该是可行的

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

但它是鼠标,不知道为什么?

像这样的

<target name="test" description="Run PHPUnit tests" depends="prepare">
            <phpunit printsummary="true" configuration="./phpunit.xml" pharlocation="${pharlocation.dir}" ><!--configuration="./phpunit.xml"-->
                <formatter type="xml" todir="${xmlreport.dir}" outfile="${reportxml.dir}"/>
            </phpunit>
            <phpunitreport infile="${xmlreport.dir}/${reportxml.dir}" format="noframes" todir="${htmlreport.dir}" styledir="${xsl.dir}" />
</target>
运行这样的结果,phpunit donot run.I确认phing已找到phpuntil.xml,当我将名称更改为错误名称时,phing将提示文件不存在。

  

autotest&gt;制备:

     

autotest&gt;测试:

     

[phpunit]总测试运行:0,失败:0,错误:0,不完整:0,   跳过:0,已过去的时间:0.00033秒

     

建立完成

     

总时间:0.5406秒

1 个答案:

答案 0 :(得分:0)

您的Phing版本与最新的PHPUnit名称空间不兼容,请将Phing更新到v3。

来源: