我从 ant 启动我的应用程序,但是当它通过命令 cmd 命令行启动时。
它刚刚在前台运行,并没有继续到下一个目标。
我如何执行该应用程序,然后通过 ant 使用 junit 任务对其进行测试?
<target name="init" depends="compile,run,test" description="init build ">
</target>
<target name="compile" depends="build_dirs"
description="compile the source " >
<javac srcdir="${src}" destdir="${build}" verbose="${TALK}" includeantruntime="false" >
<classpath refid="class.path" />
</javac>
</target>
<target name="run">
<java classname="${main-class}" fork="true">
<env key="LD_LIBRARY_PATH" value="${libs_java_library_path}:${env.LD_LIBRARY_PATH}"/>
<classpath>
<pathelement location="../lib/misc/log4j.jar"/>
<pathelement path="conf"/>
<pathelement path="dist/lib"/>
</classpath>
</java>
</target>
<target name="test" >
<junit printsummary="no" showoutput="true">
<classpath refid="test.classpath"/>
<formatter type="brief" usefile="false" />
<test name="com.controller.core.workflowShouldHaveValidXML" />
</junit>
</target>
测试目标从未执行,为什么?