运行没有testng.xml文件的testng

时间:2011-02-25 01:45:09

标签: ant testng

是否可以在不传递testng.xml文件的情况下从ant运行testng?

我有一个带有@Test注释的类,我打算动态加载。

我在我的项目中使用intellj idea,我只是右键单击该类,但我想创建一个build.xml以分离使用IDEA的需要。

1 个答案:

答案 0 :(得分:4)

TestNG网站上有一个nice example,关于如何从Ant运行testng任务而不传递XML文件:

<testng classpathref="run.cp"
    outputDir="${testng.report.dir}"
    haltOnFailure="true"M verbose="2">
<classfileset dir="${test.build.dir}" includes="**/*.class" />
</testng>