Python中unittest用法实例

作者:shichen2014 时间:2023-09-02 13:13:45 

本文实例讲述了Python中unittest的用法,分享给大家供大家参考。具体用法分析如下:

1. unittest module包含了编写运行unittest的功能,自定义的test class都要集成unitest.TestCase类,test method要以test开头,运行顺序根据test method的名字排序,特殊方法:
① setup():每个测试函数运行前运行
② teardown():每个测试函数运行完后执行
③ setUpClass():必须使用@classmethod 装饰器,所有test运行前运行一次
④ tearDownClass():必须使用@classmethod装饰器,所有test运行完后运行一次

2. 示例代码:


#文件名runtest.py
import random
import unittest

class TestSequenceFunctions(unittest.TestCase):

def setUp(self):
   self.seq = list(range(10))

def test_shuffle(self):
   # make sure the shuffled sequence does not lose any elements
   random.shuffle(self.seq)
   self.seq.sort()
   self.assertEqual(self.seq, list(range(10)))

# should raise an exception for an immutable sequence
   self.assertRaises(TypeError, random.shuffle, (1,2,3))

def test_choice(self):
   element = random.choice(self.seq)
   self.assertTrue(element in self.seq)

def test_sample(self):
   with self.assertRaises(ValueError):
     random.sample(self.seq, 20)
   for element in random.sample(self.seq, 5):
     self.assertTrue(element in self.seq)

if __name__ == '__main__':
 unittest.main()

3.运行方式:在命令行直接运行这个runtest.py

可以使用unitest.skip装饰器族跳过test method或者test class,这些装饰器包括:
① @unittest.skip(reason):无条件跳过测试,reason描述为什么跳过测试
② @unittest.skipif(conditition,reason):condititon为true时跳过测试
③ @unittest.skipunless(condition,reason):condition不是true时跳过测试

可以自定义skip decorator


#这是一个自定义的skip decorrator
def skipUnlessHasattr(obj, attr):
 if hasattr(obj, attr):
   return lambda func: func
 return unittest.skip("{!r} doesn't have {!r}".format(obj, attr))

skip decorator示例代码:


class MyTestCase(unittest.TestCase):

@unittest.skip("demonstrating skipping")
 def test_nothing(self):
   self.fail("shouldn't happen")

@unittest.skipIf(mylib.__version__ < (1, 3),
          "not supported in this library version")
 def test_format(self):
   # Tests that work for only a certain version of the library.
   pass

@unittest.skipUnless(sys.platform.startswith("win"), "requires Windows")
 def test_windows_support(self):
   # windows specific testing code
   pass

@unittest.skip("showing class skipping")
class MySkippedTestCase(unittest.TestCase):
 def test_not_run(self):
   pass

4.expected failure:使用@unittest.expectedFailure装饰器,如果test失败了,这个test不计入失败的case数目

希望本文所述对大家Python程序设计的学习有所帮助。

标签:Python
0
投稿

猜你喜欢

  • 检查access数据库中是否存在某个名字的表的asp代码

    2011-04-02 11:20:00
  • ASP获取网页内容(解决乱码问题)

    2009-07-26 10:44:00
  • 页面中 CSS 加载方式的优化

    2008-03-26 12:36:00
  • ASP程序员面试题

    2011-09-15 20:51:20
  • 使用网际数据库浏览器在线维护Access数据库

    2008-05-23 13:05:00
  • FrontPage XP设计制作网页小技巧八则

    2008-06-04 12:43:00
  • 发个选星星打分/投票功能函数

    2008-05-22 12:38:00
  • python脚本定时发送邮件

    2023-08-07 16:36:02
  • 两个不太常用的 CSS Hack

    2008-06-27 12:49:00
  • CSS鼠标悬停tip效果

    2007-08-26 17:32:00
  • MySQL数据库性能优化之索引优化

    2012-05-08 07:16:37
  • python中正则表达式的使用详解

    2023-08-08 14:47:13
  • [JS效果]动画效果打开/关闭/移动层

    2008-04-10 11:42:00
  • Oracle9i取得建表和索引的DDL语句

    2010-07-20 12:59:00
  • Python设计模式中的状态模式你了解吗

    2023-07-14 08:20:28
  • 用"表情符号"做植入广告 是否可行呢?

    2009-02-23 13:07:00
  • PHP文件运行步骤以及数据库的连接代码

    2023-05-25 08:32:51
  • ASP中类的详细介绍(class Property Get、Property Let)

    2008-02-20 19:18:00
  • javascript面向对象编程(四)

    2008-03-07 14:20:00
  • 动态提示的select下拉框

    2007-12-02 14:54:00
  • asp之家 网络编程 m.aspxhome.com