ant运行junit的测试类

<?xml version="1.0" encoding="utf-8" ?>

<project name="job"	default="all">
	<property name="src.dir" location="src"></property>	
	<property name="junit-test.dir" location="junit-test"></property>
	<property name="WebRoot.WEB-INF.lib.dir" location="WebRoot/WEB-INF/lib"></property>
	<property name="WebRoot.WEB-INF.classes.dir" location="WebRoot/WEB-INF/classes"></property>
	<!-- 编译java文件 -->
	<target name="compile">
		<javac includeAntRuntime="false" destdir="${WebRoot.WEB-INF.classes.dir}" srcdir="${src.dir}" >
			<classpath>
				<fileset dir="${WebRoot.WEB-INF.lib.dir}">
					<include name="**/*.jar" />
				</fileset>
			</classpath>	
		</javac>	
	</target>
	
	<!-- junit test -->	
	<target name="test" depends="compile">
		<junit printsummary="yes" haltonfailure="yes" haltonerror="yes" >
			<classpath> <!-- 加载项目jar包跟编译好的class文件 -->
				<pathelement path="${WebRoot.WEB-INF.classes.dir}"/>
				<fileset dir="${WebRoot.WEB-INF.lib.dir}">
				    <include name="*.jar"/>
				</fileset>
			</classpath>
		
			<formatter type="xml"/><!-- 生成的运行结果报告文件 -->
			<!-- 执行以Test为后缀的文件名 -->
			<batchtest todir="${junit-test}">
				<fileset dir="${src.dir}">
					<include name="**/*Test.java"/>
				</fileset>
			</batchtest>
		</junit>
		
	</target>
	
	<target name="mkdir">
		<mkdir dir="${junit-test.dir}" />
	</target>
	
	<target name="all" depends="mkdir,compile,test"></target>

</project>
相关文章
相关标签/搜索