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

 

上一篇:assert 断言


下一篇:pytest--assert断言