是否可以在不传递testng.xml文件的情况下从ant运行testng?
我有一个带有@Test注释的类,我打算动态加载。
我在我的项目中使用intellj idea,我只是右键单击该类,但我想创建一个build.xml以分离使用IDEA的需要。
答案 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>