首页 > 其他 > 详细

unittest生成报告

时间:2019-09-26 18:33:29      阅读:82      评论:0      收藏:0      [点我收藏+]

# html报告文件路径
    report_abspath = os.path.join(report_path, "result.html")
    fp = open(report_abspath, "wb")
    runner = HTMLTestRunner.HTMLTestRunner(stream=fp,
                                           title=u‘自动化测试报告,测试结果如下:‘,
                                           description=u‘用例执行情况:‘)

    # 调用add_case函数返回值
    runner.run(all_case())
    fp.close()

unittest生成报告

原文:https://www.cnblogs.com/yaohu/p/11593419.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!