Pytest 编写规则

编写规则:

  • 测试文件以test_开头(以_test结尾也可以)
  • 测试类以Test开头,并且不能带有 init 方法
  • 测试用例方法以test_开头

断言使用基本的assert即可

示例 : 

test_pyexample.py

import pytest
 
class TestClass:
    def test_one(self):
      x = "this"
      assert 'h' in x
 
    def test_two(self):
      x = "hello"
      assert hasattr(x, 'check')
 
    def test_three(self):
      a = "hello"
      b = "hello world"
      assert a in b

 

posted @ 2021-08-26 12:46  Avicii_2018  阅读(74)  评论(0编辑  收藏  举报