python测试框架 nose 简介

发现一个测试工具 很便捷

优势

     自动发现测试用例(包含[Tt]est文件以及文件包中包含test的函数,如以test开头的文件、以test开头的函数或方法、 以Test开头的类)

nose自动收集单元测试,会自动识别源代码文件、目录或包中的测试用例,任何符合正则表达式:(?:^|[b_.-])[Tt]est的类、函数、文件或目录,以及TestCase的子类都会被识别并执行,匹配成功的包、任何python的源文件都会被当做测试用例

安装

pip install nose

相关命令

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

  • nosetests –s 执行并捕获输出

  • nosetests –with-xunit 输出xml结果报告
  • nosetests -v: 查看nose的运行信息和调试信息
  • nosetests -w 目录:指定一个目录运行测试

执行测试方法

方法一:

打开终端,进入测试文件目录test,直接执行命令:

运行所有:

nosetests

运行某文件:

nosetests test.py

运行整个包:

nosetests -v  test_case

运行某个模块:

nosetests –v  test_case.test_case_0002

运行某一个用例:

nosetests -v  test_case.test_case_0002:test_lean_4

运行不同模式下不同用例:

nosetests  -v --tests=test_case.test_case_0002:test_lean_4,test_case.test_case_0001:test_lean_2

方法二:

编码main.py文件:

import nose
nose.main()

或
import nose
result = nose.run()
print(result)

然后执行main.py文件:

python main.py

附:

工具nose.tools的使用

1、测试脚本中引入:from nose.tools import nottest,istest:

2、不测试的方法:方法名上加修饰器@nottest;

3、指定为测试方法:方法名上加修饰器@istest(方法名无需符合命名规则);

4、查看要执行的用例列表:nosetests –collect-only –v

你可能感兴趣的:(python)