如何运行我在testng xml中提到的java文件?

时间:2015-05-29 03:10:21

标签: java ant testng

我有一个testng.xml文件和一个build.xml文件。我想知道如何在build.xml文件中编写代码,该文件可以运行我在testng.xml文件中提到的所有java文件?

1 个答案:

答案 0 :(得分:0)

您可以定义testng任务并调用它。

更多详情请见the doc

<taskdef resource="testngtasks" classpath="testng.jar"/>


<testng classpathref="run.cp"
        outputDir="${testng.report.dir}"
        sourcedir="${test.src.dir}"
        haltOnfailure="true">

   <xmlfileset dir="${test14.dir}" includes="testng.xml"/>
</testng>