设为首页 加入收藏

TOP

python测试框架nose
2017-09-30 17:24:18 】 浏览:3850
Tags: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'

执行结果如下:

 

】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
上一篇python学习四天--for 循环 下一篇day7 socket网络编程基础

最新文章

热门文章

Hot 文章

Python

C 语言

C++基础

大数据基础

linux编程基础

C/C++面试题目