unittest使用BeautifulReport库生成测试报告

Posted test-hui

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了unittest使用BeautifulReport库生成测试报告相关的知识,希望对你有一定的参考价值。

首先我们下载BeautifulReport库
红色字体为重点部分
需要把他的包中的BeautifulReport.py放入Python下的Lib中不然会报错
技术图片

 

 在然后把包中的template模板也放入Python下的Lib中,因为源码中默认模板路径在是py下的lib中

 技术图片

 

 


import unittest
from BeautifulReport import BeautifulReport class TestStringMethods(unittest.TestCase): def test_upper(self): ‘‘‘第一个测试用例‘‘‘ self.assertEqual(foo.upper(), FOO) def test_isupper(self): ‘‘‘第二个测试用例‘‘‘ self.assertTrue(FOO.isupper()) self.assertFalse(Foo.isupper()) def test_split(self): ‘‘‘第三个测试用例‘‘‘ s = hello world self.assertEqual(s.split(), [hello, world]) # check that s.split fails when the separator is not a string with self.assertRaises(TypeError): s.split(2) if __name__ == __main__: test_suite=unittest.TestSuite() loader=unittest.TestLoader() test_suite.addTests(loader.loadTestsFromTestCase(TestStringMethods)) # unittest.TextTestRunner(verbosity=2).run(test_suite) run = BeautifulReport(test_suite) # 实例化BeautifulReport模块 run.report(filename=测试报告, description=综合招标单表标段全流程)
使用BeautifulReport生成测试报告的话不能直接执行测试用例不然会抛错
可以查看report函数源码 知道怎么设置测试用例头,路径,模板样式
技术图片

 

 然后直接执行就行了

技术图片

 

 

以上是关于unittest使用BeautifulReport库生成测试报告的主要内容,如果未能解决你的问题,请参考以下文章

selenium+python+unittest多线程生成报告(BeautifulReport)

selenium+python自动化91-unittest多线程生成报告(BeautifulReport)

selenium+python自动化91-unittest多线程生成报告(BeautifulReport)

BeautifulReport--适用于unittest自动化测试的可视化报告

基于UIAutomation+Python+Unittest+Beautifulreport的WindowsGUI自动化测试框架主入口main解析

基于UIAutomation+Python+Unittest+Beautifulreport的WindowsGUI自动化测试框架common目录解析