欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

测试报告HTMLTestRunner的应用

程序员文章站 2023-01-22 23:45:19
1.首先要导入HTMLTestRunner.py文件注意,这里的HTMLTestRunner是Python标准库的unittest模块的扩展,既不能通过命令终端‘pip install HTMLTestRunner’安装,也不能直接在Pycharm的setting中配置,需要去自行下载。下载链接(python3版本):http://tungwaiyip.info/software/HTMLTestRunner.html进入页面之后,右键“链接另存为…”,下载完成后导入到 python 中的 Lib /...

1.首先要导入HTMLTestRunner.py文件
注意,这里的HTMLTestRunner是Python标准库的unittest模块的扩展,既不能通过命令终端‘pip install HTMLTestRunner’安装,也不能直接在Pycharm的setting中配置,需要去自行下载。
下载链接(python3版本):http://tungwaiyip.info/software/HTMLTestRunner.html
进入页面之后,右键“链接另存为…”,下载完成后导入到 python 中的 Lib /site-packages文件夹中
2.导包
测试报告HTMLTestRunner的应用
3.运行之后会生成一个report测试报告文件,这里需进行配置

// 配置report文件的名称,标题,描述,路径
report_name = '测试报告名称'
report_title = '测试报告标题'
report_desc = '测试报告描述'
report_path = './report/'
report_file = report_path + 'report.html'
if not os.path.exists(report_path):
    os.mkdir(report_path)
else:
    pass

4.应用

# 创建一个测试套件 == list
suite = unittest.TestSuite()
with open(report_file, 'wb') as report:
    suite.addTests(unittest.TestLoader().loadTestsFromName('test4'))
    # 套件通过TextTextRunner对象进行运行 unittest.main()
    runner = HTMLTestRunner(stream=report, title=report_title, description=report_desc)
    runner.run(suite)
report.close()

5.最后运行,右击report文件用浏览器打开
如下图所示:
测试报告HTMLTestRunner的应用
生成的测试报告基本样式:
测试报告HTMLTestRunner的应用

本文地址:https://blog.csdn.net/qq_43096786/article/details/107085058