如何使用ant运行多个测试套件?

时间:2015-11-25 10:36:01

标签: php ant

我的phpunit.xml文件中有一些测试套件,如下所示

 <testsuites>
        <testsuite name = "messaging"> 
            <directory>tests/messaging</directory> 
        </testsuite>
        <testsuite name = "media"> 
            <directory>tests/media</directory> 
        </testsuite>
        <testsuite name = "dys"> 
            <directory>tests/dys</directory> 
        </testsuite>
    </testsuites> 

我在build.xml中的build.xml中运行这些测试套件,如下所示

    <target name="phpunit"
                description="Run unit tests with PHPUnit">
            <exec executable="phpunit">
                <arg value = "--configuration"/>
                <arg path = "phpunit.xml"/>
                <arg line=" --testsuite messaging" />
                <arg line=" --testsuite media" />
            </exec>
        </target>  

我试图以这种方式运行两个测试套件。但它总是执行第二个。 我曾尝试在带有和不带逗号的一个参数中编写测试套件,但这种格式是不可接受的。 怎么做?

0 个答案:

没有答案