测试开发技术网站
博客
设计
设计
开发
Python
测试
unittest
运维
Linux基础应用
CI/CD
CI/CD
数据库
数据库
云计算
云计算
云原生
云原生
爬虫
爬虫
数据分析
数据分析
人工智能
人工智能
登录
注册
UnitTest自动化测试框架中skip的用法
收藏本文
作者:redrose2100 类别: 日期:2022-05-11 06:55:50 阅读:839 次 消耗积分:0 分
[【原文链接】UnitTest自动化测试框架中skip的用法](http://devops-dev.com/article/154) [TOC] # 1、无条件跳过skip 比如一个用例正在开发中或者用例废弃了,但是需要保存存档,此时可以加上skip装饰,同时加上跳过的原因,代码如下: ```python import unittest class TestDemo01(unittest.TestCase): @unittest.skip("正在开发中...") def test_01(self): print("in test_01...") def test_02(self): print("in test_02...") if __name__ == "__main__": unittest.main() ``` 执行结果如下: ```python Skipped: 正在开发中... in test_02... Ran 2 tests in 0.002s OK (skipped=1) ``` # 2、有条件跳过skipIf()和skipUnless() skipIf()当后面的条件为True时跳过,skipUnless()当后面的条件为False时跳过,具体代码实现如下 ```python import unittest class TestDemo01(unittest.TestCase): @unittest.skipIf(2 > 1, "不满足执行条件") def test_01(self): print("in test_01...") @unittest.skipUnless(1 > 2, "当前面条件为假时跳过不执行") def test_02(self): print("in test_02...") def test_03(self): print("in test_03...") if __name__ == "__main__": unittest.main() ``` 执行结果如下: ```python Ran 3 tests in 0.002s OK (skipped=2) Skipped: 不满足执行条件 Skipped: 当前面条件为假时跳过不执行 in test_03... ``` skipIf()和skipUnless()应用于动态的控制用例执行,比如当环境出现什么情况时,此用例执行没有意义了,此时可以通过这个去控制 # 3、用例失败时忽略expectedFailure 当某个用例失败时想忽略时可以使用expectedFailure去装饰用例,代码如下 ```python import unittest class TestDemo01(unittest.TestCase): @unittest.expectedFailure def test_01(self): self.assertEqual(1, 2) print("in test_01...") def test_02(self): print("in test_02...") if __name__ == "__main__": unittest.main() ``` 执行结果如下: ```python Ran 2 tests in 0.004s OK (expected failures=1) Expected failure: Traceback (most recent call last): File "D:\ProgrameFile\PyCharm 2020.1\plugins\python\helpers\pycharm\teamcity\diff_tools.py", line 32, in _patched_equals old(self, first, second, msg) File "d:\python39\lib\unittest\case.py", line 831, in assertEqual assertion_func(first, second, msg=msg) File "d:\python39\lib\unittest\case.py", line 824, in _baseAssertEqual raise self.failureException(msg) AssertionError: 1 != 2 During handling of the above exception, another exception occurred: Traceback (most recent call last): File "d:\python39\lib\unittest\case.py", line 59, in testPartExecutor yield File "d:\python39\lib\unittest\case.py", line 593, in run self._callTestMethod(testMethod) File "d:\python39\lib\unittest\case.py", line 550, in _callTestMethod method() File "G:\src\UT\demo\test01.py", line 8, in test_01 self.assertEqual(1, 2) File "D:\ProgrameFile\PyCharm 2020.1\plugins\python\helpers\pycharm\teamcity\diff_tools.py", line 38, in _patched_equals raise error teamcity.diff_tools.EqualsAssertionError: :: 1 != 2 in test_02... ```
始终坚持开源开放共享精神,同时感谢您的充电鼓励和支持!
版权所有,转载本站文章请注明出处:redrose2100, http://blog.redrose2100.com/article/154
上一篇:
UnitTest自动化测试框架结合数据驱动(DDT)应用实践
下一篇:
UnitTest自动化框架中的测试套及runner的应用
搜索
个人成就
出版书籍
《Pytest企业级应用实战》
测试开发技术全栈公众号
测试开发技术全栈公众号
DevOps技术交流微信群
加微信邀请进群
常用网站链接
开源软件洞察
云原生技术栈全景图
Python语言官方文档
Golang官方文档
Docker官方文档
Jenkins中文用户手册
Scrapy官方文档
VUE官方文档
Harbor官方文档
openQA官方文档
云原生开源社区
开源中国
Kubernetes中文文档
Markdown语法官方教程
Kubernetes中文社区
Kubersphere官方文档
BootStrap中文网站
JavaScript中文网
NumPy官方文档
Pandas官方文档
GitLink确实开源网站
数据库排名网站
编程语言排名网站
SEO综合查询网站
数学加减法练习自动生成网站
Kickstart Generator
文章分类
最新文章
最多阅读
特别推荐
×
Close
登录
注册
找回密码
登录邮箱:
登录密码:
图片验证码:
注册邮箱:
注册密码:
邮箱验证码:
发送邮件
注册邮箱:
新的密码:
邮箱验证码:
发送邮件