pytest入门

安装

pip install pytest

基本用例

def add(x):
    return x+1

def test_x():
    assert add(2) == 3

执行

在命令行使用pytest

pytest入门

测试用例

class TestDemo:
    def test_one(self):
        assert True

    def test_two(self):
        assert True

    def test_three(self):
        assert True

编写测试函数注意:

  1. 文件名 test_开头
  2. 类名 Test开头
  3. 类中的测试方法以 test开头

pytest入门

Original: https://blog.csdn.net/m0_58037062/article/details/127950313
Author: 善仁
Title: pytest入门

原创文章受到原创版权保护。转载请注明出处:https://www.johngo689.com/775466/

转载文章受原作者版权保护。转载请注明原作者出处!

(0)

大家都在看

亲爱的 Coder【最近整理,可免费获取】👉 最新必读书单  | 👏 面试题下载  | 🌎 免费的AI知识星球