ant_Jmeter持续集成测试报告优化之添加throughput显示

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ant_Jmeter持续集成测试报告优化之添加throughput显示相关的知识,希望对你有一定的参考价值。

上篇文章中的build文件生成的测试报告数据显示比较标准,如果想把thoughput也

显示在报告里面,只需要在build文件中加入下面的脚本即可

        <!--以下为增加throughput项目显示=(请求总字节数)/(total time) 
        <xsl:variable name="nodeKB">  
            <xsl:call-template name="Throughput"> 
                <xsl:with-param name="nodes" select="/testResults/*/@t" />
                <xsl:with-param name="count" select="sum(/testResults/*/@by) div 1024" />
            </xsl:call-template>
        </xsl:variable> 
        <!--增加throughput结束-->
        <!--以下为增加TPS项目显示=(总请求数)/(total time)
        <xsl:variable name="nodeThroughput">  
            <xsl:call-template name="Throughput">
                <xsl:with-param name="nodes" select="/testResults/*/@t" />
                <xsl:with-param name="count" select="$allCount" />
            </xsl:call-template>
        </xsl:variable>
        <!--增加TPS结束-->

add 90%line 





很简单吧,加上去后自己去调试一下看看效果吧。

有问题加群交流QQ群:610845268


本文出自 “IT虫” 博客,请务必保留此出处http://laomomo.blog.51cto.com/6595318/1937405

以上是关于ant_Jmeter持续集成测试报告优化之添加throughput显示的主要内容,如果未能解决你的问题,请参考以下文章

jenkis持续集成之服务器上搭建jenkis完成自动化测试并自动发送测试报告邮件

收藏清单系列 | python持续集成测试报告及其他资源

jenkins--ant持续集成测试build文件脚本 测试报告

window下jenkins自动化持续集成报告查看配置,基于python语言

python自动化之如何利用allure生成测试报告

python自动化之如何利用allure生成测试报告