python测试框架nose

据说nose是一个比较牛逼的单元测试框架,今天打算来学习学习。

nose不是python自带模块,这里我才用pip的方式安装

pip install nose

这样就完成了安装,然后再确认下是否安装成功了,直接打开cmd输入nosetests

 

出现这个一般就说明安装成功了。

好了,下面是正戏:

nose相关执行命令:

1、  nosetests  –h查看所有nose相关命令

2、  nosetests –s执行并捕获输出

3、  nosetests –with-xunit输出xml结果报告

4、  nosetests -v: 查看nose的运行信息和调试信息 

5、  nosetests -w 目录:指定一个目录运行测试

nose 特点:

a)         自动发现测试用例(包含[Tt]est文件以及文件包中包含test的函数)

b)         以test开头的文件

c)         以test开头的函数或方法

d)         以Test开头的类

经过研究发现,nose会自动识别[Tt]est的类、函数、文件或目录,以及TestCase的子类,匹配成功的包、任何python的源文件都会被当做测试用例。

下面写一个简单的测试用例

复制代码

# coding = utf-8
# author:semishigure


class Testclass:

    def __init__(self):
        pass

    def setup(self):
        print 'start'

    def teardown(self):
        print 'stop'

    def testfunc1(self):
        print 'this is case1'

    def testfunc2(self):
        print 'this is case2'

    def testfunc3(self):
        print 'this is case3'

复制代码

执行结果如下:

https://www.cnblogs.com/semishigure/archive/2017/08/03/7268251.html

猜你喜欢

转载自blog.csdn.net/larry_zeng1/article/details/82526944