我有一个testng.xml文件和一个build.xml文件。我想知道如何在build.xml文件中编写代码,该文件可以运行我在testng.xml文件中提到的所有java文件?
答案 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>