pytest框架
Posted loveapple
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pytest框架相关的知识,希望对你有一定的参考价值。
pytharm运行三种方式
代码示例:
1 # coding=utf-8 2 import pytest 3 4 5 class TestClass: 6 def test_one(self): 7 x = "this" 8 assert ‘h‘ in x 9 10 def test_two(self): 11 x = "hello" 12 assert hasattr(x, ‘check‘) 13 14 def test_three(self): 15 a = "hello" 16 b = "hello world" 17 assert a in b 18 19 20 if __name__=="__main__": 21 pytest.main([‘-q‘, ‘test_class.py‘])
以上是关于pytest框架的主要内容,如果未能解决你的问题,请参考以下文章