时间:2021-05-22
操作步骤
1.下载BeautifulReport文件,本例文件下载地址 最新文件下载地址
2.复制文件BeautifulReport,至python安装Lib\site-packages位置下
3.
3.导入:from BeautifulReport import BeautifulReport import unittest
4.testXXX测试用例函数下可视化报告用例描述:'''描述,第一个测试用例'''
5.mian下执行:
1.实例化:ts = unittest.TestSuite()
2.按类加载全部testxxx测试用例:ts.addTest(unittest.makeSuite(类名))
按函数加载testxxx测试用例:ts.addTest(类名(‘函数名'))
3.加载执行用例生成报告:result = BeautifulReport(ts)
4.定义报告属性:result.report(description='XXX报告XX描述', filename= 'xxx.html', log_path='C:\Users\EDZ\eclipse-workspace\pythonTest\Report')
举例说明
#!/usr/bin/python3# encoding:utf-8'''Created on 2019年9月30日@author: EDZ'''import unittestfrom BeautifulReport import BeautifulReportimport osimport timeclass HtmlReport(unittest.TestCase): def test_1(self): '''描述,第一个测试用例''' print('test_1错误') self.assertEqual(1, 2) def test_2(self): '''描述,第二个测试用例''' print('test_2正确') self.assertEqual(1, 1) def test_3(self): '''描述,第三个测试用例''' print('test_3错误') self.assertEqual(2, 3)if __name__=='__main__': now = time.strftime("%Y-%m-%d %H%M%S", time.localtime(time.time())) localpath = os.getcwd() print('本文件目录位置:'+localpath) filepath = os.path.join(localpath,'Report') print('报告存放路径 :'+filepath) ts = unittest.TestSuite()#实例化 #按类加载全部testxxx测试用例 ts.addTest(unittest.makeSuite(HtmlReport)) #按函数加载testxxx测试用例 #ts.addTest(HtmlReport('test_1')) filename = now +'.html' #加载执行用例生成报告 result = BeautifulReport(ts) #定义报告属性 result.report(description='XXX报告XX描述', filename= filename, log_path=filepath)控制台运行结果
本文件目录位置:C:\Users\EDZ\eclipse-workspace\pythonTest
报告存放路径 :C:\Users\EDZ\eclipse-workspace\pythonTest\Report
F.F
测试已全部完成,
可前往C:\Users\EDZ\eclipse-workspace\pythonTest\Report查询测试报告
可视化报告
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例为大家分享了python实现石头剪刀布的具体代码,供大家参考,具体内容如下老师布置了一个石头剪刀布的作业,要可视化,还是先用代码实现再说可视化的事。环境
基于python代码的3D地图可视化,供大家参考,具体内容如下介绍使用Python对地图进行3D可视化。以地图为地图,可以在三维空间对轨迹、点进行可视化。库我们
环境搭建python3.xrequests包re包gooey包(用于可视化)代码importrequestsimportreimportosfromgooeyi
前言之前我们分享过用Python进行可视化的9种常见方式。其实我们还能让可视化图形逼格更高一些,今天就分享一下如何让可视化秀起来:用Python和matplot
本文实例为大家分享了python地震数据可视化的具体代码,供大家参考,具体内容如下参考源码:seisplot准备工作:在windows10下安装python3.