我正在尝试弄清楚如何在实际上不需要 build.xml 的情况下运行 ant 任务。特别是我想JUnit
用格式化程序运行任务。在 xml 格式中,如下所示:
<junit printsummary="true" errorProperty="test.failed" failureProperty="test.failed">
<classpath refid="run.class.path" />
<!-- console log -->
<formatter type="xml" classname="be.x.SFFormatter" />
<test name="be.x.SF" outfile="result" todir="${build.output.dir}" />
</junit>
它在运行 ant 脚本时有效,但我想让我的应用程序作为可运行的 jar 运行。从 Java 运行测试很容易:
JUnitCore junit = new JUnitCore();
testResult = junit.run(SeleniumFramework.class);
但是,我很难弄清楚如何让格式化程序真正工作。格式化程序是类型的org.apache.tools.ant.taskdefs.optional.junit.JUnitResultFormatter
,所以我怀疑我是否可以在不运行 ant 的情况下将其插入某个地方。
有没有人做过类似的事情?谢谢!