0

我想调用一个 ant 任务,它应该接受多个测试类进行 testng 和运行(不是套件 xml),非常类似于但用逗号分隔的测试类列表。当我检查文档时,我找不到任何线索。有没有可能,请告诉我。

这是我运行单个测试的 ant 任务:

<target name="run-class"
    description="run a specific test class. Requires class.name property set to fully-qualified name of class">
    <some properties />
    <testng classpathref="lib.path"
            outputDir="${outputDir}"
            workingDir="${workingDir}"
            verbose="2"
            useDefaultListeners="false"
            listeners="${testng.listeners}"
            className="${class.name}"
            delegateCommandSystemProperties="true"
            configFailurePolicy="continue">
        <jvm params/>
    </testng>
</target>

我会调用它: ant run-class -Dclass.name=com.vmware.CreateVM -DParallel=true

我想提供另一个如上所述的 ant 任务,它应该接受多个测试类(但不是作为套件 xml 文件)

4

1 回答 1

0

Please refer to TestNG Ant Task documentation and look at the classpath and classpathref attributes and classfileset element.

于 2013-03-11T20:27:53.013 回答