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函数源码 知道怎么设置测试用例头,路径,模板样式
然后直接执行就行了
相关推荐
deadgrape 2020-05-30
lucialee 2020-01-14
chichichi0 2020-01-02
typhoonpython 2019-11-05
jszy 2019-10-19
abdstime 2020-07-08
RocketJ 2020-06-22
songerxing 2020-06-01
坚持是一种品质 2020-05-29
Dipa 2020-05-05
woxxoole 2020-04-27
测试自动化顾问 2020-04-16
CloudXli 2020-04-10
民工测试小哥 2020-03-31
86427019 2020-03-27