1

我是使用 Emma 的新手。我正在尝试为 EAR 项目中的模块的 JUnit 测试用例添加 emma ant 任务。我这里没什么问题。

  • 我应该使用仪表类来打包我的 EAR 项目吗?
  • 为junit添加emma ant任务的好方法是什么?我应该使用 emmarun:on-th-fly 模式还是离线模式?对于 JUnit,我应该使用 fork 还是不使用 fork?

我正在使用 Emma 离线模式和带有 fork 的 Junit。这是我的 build.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 运行相同的单元测试时,它会给出正确的输出。

4

1 回答 1

2

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

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

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

于 2012-04-23T11:42:57.333 回答