这篇文章给大家分享的是有关unittest+coverage单元测试代码覆盖的示例分析的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。
整个项目的测试框架如下:
就是在源代码的基础上加了一个CodeCover.py文件,执行该文件会在目录CoverageReport生成相应的覆盖报告。如下是CodeCover.py的源码:
#coding=utf8
import os
import time
def findTestWithPath():
current_dir=os.getcwd()
folderName=os.listdir(current_dir)
#print folderName
#获取到测试文件所在目录
TestSuit=[suite for suite in folderName if not suite.find("TestSuit")]
#用来保存测试文件
testfile=[]
withPathFile=[]
for suite in TestSuit:
#获取测试目录下的所有测试文件
testfile=testfile+os.listdir(".\\"+suite)
for withPath in testfile:
withPath=current_dir+"\\"+suite+"\\"+withPath
withPathFile.append(withPath)
del testfile
#把testfile中的py文件挑选出来
withPathFile=[name for name in withPathFile if not "pyc" in name]
#print testfile
print withPathFile
return withPathFile
def codeCoverage():
now = time.strftime("%Y%m%d%H%M")
htmlReport=os.getcwd()+"\\"+"CoverageReport"
htmlCmd="coverage html -d " + htmlReport +"\\"+now
for pyfile in findTestWithPath():
runPyCmd="coverage run " + pyfile
if os.path.exists(htmlReport) :
os.system(runPyCmd)
os.system(htmlCmd)
else:
os.mkdir(htmlReport)
os.system(runPyCmd)
os.system(htmlCmd)
if __name__=="__main__":
codeCoverage()
运行结果图:
感谢各位的阅读!关于“unittest+coverage单元测试代码覆盖的示例分析”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!