在 ant build 中使用 Emma for JUnit.xml



我是使用艾玛的新手。我正在尝试为 EAR 项目中模块的 JUnit 测试用例添加 emma ant 任务。我在这里有几个问题。

  • 我应该使用检测类来打包我的 EAR 项目吗?
  • 为朱尼特添加艾玛蚂蚁任务的好方法是什么?我应该使用emmarun:on-th-fly模式还是离线模式?对于 JUnit,我应该使用 fork 还是不使用 fork?

我正在使用艾玛离线模式和带有叉子的 Junit。这是我的构建.xml

<!--Target and task for EMMA -->
<taskdef resource="emma_ant.properties" classpathref="Emma.libraryclasspath" />
<target name="emma" description="turns on EMMA's instrumentation/reporting" >
    <property name="emma.enabled" value="true" />
    <mkdir dir="${out.instr.dir}" />
    <property name="emma.filter" value="" />
 </target>
<target name="test" depends="init, compile" description="Run JUnit Test cases under emma environment">
    <!-- Emma instrumentation -->
    <emma enabled="${emma.enabled}" verbosity="verbose">
        <instr instrpath="${class.dir}"
                     destdir="${out.instr.dir}"        
                     metadatafile="${coverage.dir}/metadata.em"
                     merge="true" 
                     mode="copy">
            <filter value="${emma.filter}" />
        </instr>
    </emma>
    <!-- JUnit Start -->
    <junit printsummary="yes" fork="yes">
        <test name="com.hf.platform.authorizer.WebTxnAuthorizerTest" todir="${test.report.dir}">
            <formatter type="xml"/>
        </test>
        <classpath>
            <path refid="HFPlatformWeb.classpath"/>
            <path refid="Emma.libraryclasspath"/>
        </classpath>
        <jvmarg value="-Demma.coverage.out.file=${coverage.dir}/coverage.ec" />
        <jvmarg value="-Demma.coverage.out.merge=false" />
    </junit>
    <!-- Junit End -->
    <emma enabled="${emma.enabled}" verbosity="verbose">
        <report>
            <sourcepath>
                <dirset dir="${basedir}">
                    <include name="src"/>
                    <include name="test-src"/>
                </dirset>
             </sourcepath>
            <fileset dir="${coverage.dir}">
                <include name="*.em"/>
                <include name="*.ec"/>
            </fileset>
        <xml outfile="${coverage.report.dir}/report.xml" />
        <txt outfile="${coverage.report.dir}/report.txt" />
        <html outfile="${coverage.report.dir}/report.html" />
        </report>
    </emma>
</target>

当我运行它进行一次测试时,它没有生成任何报告。但是当我使用 EclEmma 运行相同的单元测试时,它会给出正确的输出。

在上面的例子中,我们需要确保以下两件事

  1. 元数据文件和覆盖率报告文件(即 .ec、.em 或 .emma 文件)的文件路径应为绝对路径或相对于项目的文件路径。例如
  2. 要运行夹在检测和报告任务之间的 java/junit 任务,它必须使用检测的类文件路径。例如

    <classpath> <pathelement location="${out.instr.dir}" /> <path refid="Emma.libraryclasspath"/> <path refid="HFPlatformEJB.classpath"/> </classpath>

相关内容

  • 没有找到相关文章

最新更新