编程语言
首页 > 编程语言> > Python接口自动化之执行测试用例的几种方法

Python接口自动化之执行测试用例的几种方法

作者:互联网

方法一:

# 创建测试运行程序
runner = unittest.TextTestRunner()
runner.run(suite)

方法二:

# 使用BeautifulReport来执行测试套件中的用例,并生成报告
from BeautifulReport import BeautifulReport
br = BeautifulReport(suite)
br.report("第一份测试报告","brreport.html",report_dir=r"C:\project\py27_class\py27_01day")

UI效果:

 

 

方法三:

复制代码
# 使用 HTMLTestRunner来生成测试报告
# suite = unittest.defaultTestLoader.discover(r"")

from HTMLTestRunnerNew import HTMLTestRunner

runner = HTMLTestRunner(stream=open("new_report.html","wb"),
                        title="第一份测试报告",
                        tester="2c",
                        description="第一个版本的测试"
                        )
runner.run(suite)

UI效果:

 

 

复制代码  

标签:测试报告,HTMLTestRunner,Python,接口,runner,report,测试用例,BeautifulReport,suite
来源: https://www.cnblogs.com/xiaoduanhe/p/12579445.html