测试管理 测试报告生成系列之-------如何用 junit 生成测试报告

梁慧玲 · 2015年09月09日 · 最后由 wangbinghua1025 回复于 2018年12月21日 · 4894 次阅读

最近几天没事研究了一下各种框架如何生成测试报告,现在依次分享出来,今天先来 junit 的看看效果,如果有人觉得不错希望继续分享的话我会接着将 testNG,reportNG 的各种生成报告方式共享出来,跟大家一起学习,或许大师们都知道了,如果能帮助到有需要的小白们就是极好的,有不对的大师们可以指出来

对 Eclipse 的工程写单元测试:
第一步:

  1. 新建测试类(这个就各位小白们自己写吧,这个不是今天的重点)
  2. 每一个测试类写好,都单独执行 run as ->JUnit Test 测一下。

第二步:

  1. 所有的测试类写好后,对工程右键->export->General->Ant Buildfiles->next->选中工程名,默认的选项:name for and buildfile:build.xml;JUnit output directory:Junit->finish.
  2. 在工程下会生成一个 build.xml 的蚂蚁图标的文件。

第三步:

  1. 在工程目录下新建一个 junit 文件夹
  2. 右击 build.xml 文件,->run as-> ant build...选择第 2 个 ant build,选中 xml,测试类和 junit report
  3. 选好之后,Run.

第四步:
查看 Run 结束的结果。

  1. 在工程下 junit 的文件夹,下面有一系列的文件。 其中 index.html 文件->open with->web browser,可以看到所有测试类的执行结果。如下图格式的:
共收到 5 条回复 时间 点赞

JUnit 也可以生成这样的 report?

—— 来自 TesterHome 官方 安卓客户端

我生成的 junit 测试报告显示的是上一次的测试数据
build.xml 如下:

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- WARNING: Eclipse auto-generated file.
              Any modifications will be overwritten.
              To include a user specific buildfile here, simply create one in the same
              directory with the processing instruction <?eclipse.ant.import?>
              as the first entry and export the buildfile again. --><project basedir="." default="build" name="pearVideo_Demo">
    <property environment="env"/>
    <property name="junit.output.dir" value="junit"/>
    <property name="debuglevel" value="source,lines,vars"/>
    <property name="target" value="1.8"/>
    <property name="source" value="1.8"/>
    <path id="pearVideo_Demo.classpath">
        <pathelement location="bin"/>
        <pathelement location="../../导入包/java-client-1.6.0.jar"/>
        <pathelement location="../../导入包/selenium-java-2.44.0.zip"/>
        <pathelement location="../../导入包/selenium-server-standalone-2.44.0.jar"/>
    </path>
    <target name="init">
        <mkdir dir="bin"/>
        <copy includeemptydirs="false" todir="bin">
            <fileset dir="src">
                <exclude name="**/*.launch"/>
                <exclude name="**/*.java"/>
            </fileset>
        </copy>
    </target>
    <target name="clean">
        <delete dir="bin"/>
    </target>
    <target depends="clean" name="cleanall"/>
    <target depends="build-subprojects,build-project" name="build"/>
    <target name="build-subprojects"/>
    <target depends="init" name="build-project">
        <echo message="${ant.project.name}: ${ant.file}"/>
        <javac debug="true" debuglevel="${debuglevel}" destdir="bin" includeantruntime="false" source="${source}" target="${target}">
            <src path="src"/>
            <classpath refid="pearVideo_Demo.classpath"/>
        </javac>
    </target>
    <target description="Build all projects which reference this project. Useful to propagate changes." name="build-refprojects"/>
    <target description="copy Eclipse compiler jars to ant lib directory" name="init-eclipse-compiler">
        <copy todir="${ant.library.dir}">
            <fileset dir="${ECLIPSE_HOME}/plugins" includes="org.eclipse.jdt.core_*.jar"/>
        </copy>
        <unzip dest="${ant.library.dir}">
            <patternset includes="jdtCompilerAdapter.jar"/>
            <fileset dir="${ECLIPSE_HOME}/plugins" includes="org.eclipse.jdt.core_*.jar"/>
        </unzip>
    </target>
    <target description="compile project with Eclipse compiler" name="build-eclipse-compiler">
        <property name="build.compiler" value="org.eclipse.jdt.core.JDTCompilerAdapter"/>
        <antcall target="build"/>
    </target>
    <target name="Android_0603">
        <mkdir dir="${junit.output.dir}"/>
        <junit fork="yes" printsummary="withOutAndErr">
            <formatter type="xml"/>
            <test name="pearVideo_Demo_Android.Android_0603" todir="${junit.output.dir}"/>
            <classpath refid="pearVideo_Demo.classpath"/>
        </junit>
    </target>
    <target name="junitreport">
        <junitreport todir="${junit.output.dir}">
            <fileset dir="${junit.output.dir}">
                <include name="TEST-*.xml"/>
            </fileset>
            <report format="frames" todir="${junit.output.dir}"/>
        </junitreport>
    </target>
</project>

但是我的 junit 文件夹会生成两个.xml 文件,如下:

每次测试数据会保存在第一个文件里,但是生成的测试报告拿的是第二个文件的数据(进行测试的时候,第二个文件会继承第一个文件的数据)所以每次生成的报告都会是上一次的测试结果。能不能帮忙看看,谢谢!
我尝试修改成

</target>
<target name="junitreport">
    <junitreport todir="${junit.output.dir}">
        <fileset dir="${junit.output.dir}">
            <include name="TESTS-*.xml"/>
        </fileset>
        <report format="frames" todir="${junit.output.dir}"/>
    </junitreport>
</target>

运行提示 TESTS-TestSuites.xml 不是测试套件.....

我在 mac 上按照以上步骤,到第三步是,选择第 2 个 ant build,并没有 xml,测试类和 junit report,是还需要什么配置吗

小柴火儿 回复

请问最后解决了么。ant 也安装和配置后,也出现同样问题

需要 登录 后方可回复, 如果你还没有账号请点击这里 注册