03-pytest-测试用例setup和teardown

目录

1. 用例运行级别

2. 函数式

3. 类中使用


1. 用例运行级别

  • 模块级(setup_module/teardown_module)开始于模块始末,全局的

  • 函数级(setup_function/teardown_function)只对函数用例生效(不在类中)

  • 类级(setup_class/teardown_class)只在类中前后运行一次(在类中)

  • 方法级(setup_method/teardown_method)开始于方法始末(在类中)

  • 类里面的(setup/teardown)运行在调用方法的前后

2. 函数式

  • setup_function/teardown_function:每个用例开始和结束调用一次
# -*- coding: utf-8 -*-
# @Time    : 2021/1/18
# @Author  : 大海
import os
import pytest


# 函数式
def setup_function():
    print("setup_function:每个用例开始前都会执行")


def teardown_function():
    print("teardown_function:每个用例结束后都会执行")


def test_one():
    print("正在执行----test_one")
    x = "this"
    y = "this is pytest"
    assert x in y


def test_two():
    print("这是用例2")
    x = "selenium"
    assert "m" in x


def test_three():
    print("这是用例3")
    a = 1
    b = 2
    assert a < b


if __name__ == "__main__":
    file_path = os.path.abspath(__file__)
    # print(file_path)
    pytest.main(["-s", file_path])
  • setup_module/teardown_module:所有用例开始执行前执行一次/所有用例执行结束后执行一次
# -*- coding: utf-8 -*-
# @Time    : 2021/1/18
# @Author  : 大海
import os
import pytest


# 函数式
def setup_function():
    print("setup_function:每个用例开始前都会执行" + '22')


def teardown_function():
    print("teardown_function:每个用例结束后都会执行" + '222')


def setup_module():
    print("setup_module:所有用例执行前执行一次" + '11')


def teardown_module():
    print("teardown_module:所有用例执行后执行一次" + '111')


def test_one():
    print("这是用例1")
    x = "this"
    y = "this is pytest"
    assert x in y


def test_two():
    print("这是用例2")
    x = "selenium"
    assert "m" in x


def test_three():
    print("这是用例3")
    a = 1
    b = 2
    assert a < b


if __name__ == "__main__":
    file_path = os.path.abspath(__file__)
    # print(file_path)
    pytest.main(["-s", file_path])

3. 类中使用

  • setup/teardown:同unittest里面的setup/teardown的功能
  • setup_class/teardown_class:同unittest里面的setupClass和teardownClass功能
# -*- coding: utf-8 -*-
# @Time    : 2021/1/18
# @Author  : 大海

import os
import pytest


# 类中使用
class TestCase():

    def setup(self):
        print("setup:每个用例开始前都会执行" + '11')

    def teardown(self):
        print("teardown:每个用例结束后都会执行" + '222')

    def setup_class(self):
        print("setup_class:所有用例执行前执行一次" + '11')

    def teardown_class(self):
        print("teardown_class:所有用例执行后执行一次" + '111')


    def setup_method(self):
        print("setup_method:每个用例开始前都会执行" + '111')

    def teardown_method(self):
        print("teardown_method:每个用例执行后执行一次" + '11')

    def test_one(self):
        print("这是用例1")
        x = "this"
        y = "this is pytest"
        assert x in y

    def test_two(self):
        print("这是用例2")
        x = "selenium"
        assert "m" in x

    def test_three(self):
        print("这是用例3")
        a = 1
        b = 2
        assert a < b


if __name__ == "__main__":
    file_path = os.path.abspath(__file__)
    pytest.main(["-s", file_path])

 

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

爱学习de测试小白

你的鼓励将是我创作的最大动力!

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值